我有一個腳本,我試圖從包含文件中分配一個數組值(因爲這些相同的變量將在幾個腳本中使用)。PHP:從包含文件傳遞變量
這似乎差不多的工作,但是當我嘗試打印變量,我得到了不同的結果:
的script.php:
<?php
include("test_includes.inc.php");
$these_numbers = $numbers;
echo " <pre> print_r($these_numbers) var_dump($these_numbers)
</pre>
$these_numbers[0]<br>$these_numbers[1]";
?>
和test_includes.inc.php
<?php
$numbers = ARRAY('one','two');
?>
結果:
print_r(Array)
var_dump(Array)
one
two
我想我不明白爲什麼print_r()和var_dump()不工作,如果這是我的真實腳本中的問題的原因(我對數組中的每個元素執行foreach並運行使用它的sql查詢)。
感謝, Tev來
Uuughhhhh。對不起 - 我不相信我錯過了報價!感謝大家! – Tev 2012-01-04 16:00:12