我有一個wordpress主題下面的情況,我想在一個名爲navigation.php不能夠從PHP
$array_test = array (1,2,3,4);
function func1()
{
global $array_test;
echo "test"; // to ensure that the function has been called
echo $array_test[2]; // this writes nothing, though the function is being called
}
文件中
文件來修改所謂的header.php的訪問全局數組功能func1
正在調用中,仍然無法訪問$array_test[2]
的值,
您有什麼想法嗎?
編輯: 我懷疑它是與WordPress或主題的問題,但我不知道 的主題是自由health_care_wp_theme
它適用於Ideone ... http://ideone.com/dsTLY8 – mpyw 2013-05-12 12:19:46
可能的牛逼他的兩個文件不包括在一起,沒有包含在正確的順序中,或者變量被覆蓋在其中的某處。 – scoota269 2013-05-12 12:22:01
當你轉儲時''GLOBALS [2]' – 2013-05-12 12:22:04