我在myFile.php設置此功能:PHP功能(快捷方式)使用
function monthLanguage()
{
if ($this->lang=='italian')//this statement is requared many times within the file!
{
$dayName[]="Dom";
$dayName[]="Lun";
$dayName[]="Mar";
$dayName[]="Mer";
$dayName[]="Gio";
$dayName[]="Ven";
$dayName[]="Sab";
}else
{
$dayName[]="Sun";
$dayName[]="Mon";
$dayName[]="Tue";
$dayName[]="Wed";
$dayName[]="Thu";
$dayName[]="Fri";
$dayName[]="Sat";
}
}
我就在想這個if語句來包裝成一個函數來調用它在需要作爲一種短碼。
我這樣稱呼它:
monthLanguage();
但我收到錯誤消息:調用未定義功能
就如何實現我的短代碼意圖的任何幫助嗎?
由於您在代碼中使用了'$ this',我將假設它是在一個類中。如果你在類中調用它,使用'$ this-> monthLanguage();'else'$ classInstantiator-> monthLanguage();'。 –
你可以添加調用它的代碼嗎?是類中的月語言,因爲它似乎是你使用$這 – wgcrouch
並確保你包含該文件 – GiveMeAllYourCats