“variabel statis publik laravel” Kode Jawaban

bagaimana mengatur variabel publik dalam metode statis di laravel

class ContentController extends BaseController {

    public static $text = null;

    public static function getContent($description)
    {
        $content = Content::where('description', $description)->first();
        return static::$text = $content->text;
    }
}
Mohamad

variabel statis publik laravel

class Export extends Model {
    public static $itemsPerPage = 20;

	public function test() {
		static::$itemsPerPage;
    }
}
Courageous Cod

Laravel statis baru

Explained like a charm
https://stackoverflow.com/questions/15898843/what-means-new-static
Lokesh003

Jawaban yang mirip dengan “variabel statis publik laravel”

Pertanyaan yang mirip dengan “variabel statis publik laravel”

Lebih banyak jawaban terkait untuk “variabel statis publik laravel” di PHP

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya