Merhaba, bu gönderide sabitleri barındıran dosya oluşturup, oluşturulan dosyada sabitler belirtip, belirtilen sabitlere erişmekten bahsediyorum. Laravel projesi içerisinde yapılandırma dosyaları config dizini altında bulunur. Bu dizine “constant.php” dosyası oluşturuyorum. Oluşturulan dosya üzerinde sabit belirtimini gerçekleştiriyorum.
Örneğin;
return [
"URL"=>"https://www.omurserdar.com",
"AUTHOR"=>"omurserdar",
ya da dizi için,
"sp" => [
"personnel"=>[
"STATE" => "sp_getPersonnelState",
"DEPARTMENT" => "sp_getPersonnelDepartment",
"JOB" => "sp_getPersonnelJob",
]
]
]; //return
Sabitlere erişim için Config sınıfının get fonksiyonu kullanılır. Bu fonksiyon ilk parametre olarak hangi dosya ve hangi sabit parametresini alırken son parametre olarak sabit bulunmadığındaki geçilecek değeri parametre olarak alır. Örneğin;
echo "<pre>";
print_r(Config::get('constants'));
echo "</pre>";
echo Config::get("constants.author","does not exists");
echo "<br>";
echo config("constants.AUTHOR");
echo "<pre>";
print_r(config("constants"));
echo "</pre>";
echo config("constants.author",'does not exists');
echo "<br>";
echo config("constants.AUTHOR");
echo "<br>";
echo config("constants.sp.personnel.STATE");
echo "<br>";
Toplam Beğeni Sayısı: 1
Yerelleştirme (Localization #2)
Yerelleştirme (Localization)
Asset Fonksiyonu ile Varlıklara Erişim (accessing assets via asset function)