我在parameter_file.php文件中有php代碼,如下所示。當我在index.php文件中調用這個文件時,它沒有讀取任何值!這兩個文件是相同的目錄,並使用最新的PHP 5.4php include或include_once函數不起作用
parameter_file.php
<?php
$color='red';
$car='BMW';
?>
身體的index.php下存在
<?php include 'parameter_file.php';
echo "value is : ".$color;
?>
你能告訴哪裏/什麼問題是 ?
parameter_file.php和index.php在同一個文件夾中? – Sebastien
嘗試使用require而不是include - 它會對錯誤進行更詳細的描述。看看使用require'parameter_file.php'時是否收到錯誤信息; –
也許parameter_file.php與index.php不在同一個文件夾中,在這種情況下,你將不得不使用類似'include'../ folderhere/parameter_file.php';'或類似的東西。 – Sebastien