-1
以下代碼可以在本地主機上正常工作,但是當我在服務器 上將其上載時,它不會。來自另一個文件的PHP調用函數
的functions.php
<?php
function test($tmp){
return "returned value: " . $tmp;
}
?>
的config.php
<?php
include("functions.php");
?>
的index.php
<?php
include("config.php");
echo test("value");
?>
服務器沒有甚至顯示錯誤,但我已啓用它:
ini_set('display_errors',1);
PHP版本是相同的。
在index.php中包含functions.php – ManiMuthuPandi
section boldding – amdixon