我得到這個結構數組,我想從它那裏得到一個元素:PHP數組導航
Array
(
[0] => Array
(
[description] =>
[idProduct] => Array
(
[id1] => 7227
[idProduct] => 3
)
[idSite] => 2592
[name] => Parcela Azul
[picture] =>
)
[1] => Array
(
[description] =>
[idProduct] => Array
(
[id1] => 7227
[idProduct] => 8
)
[idSite] => 2592
[name] => Apartamento 2 pax
[picture] =>
)
)
所以,我得到的存儲陣列的變量。我的問題是:
爲什麼這個工程:
$test = $categorias[0];
$test2 = $test['name'];
echo "<pre>";
print_r($test2);
echo "</pre>";
結果:Parcela阿祖爾
這並不:
$test = $categorias[0]['name'];
echo "<pre>";
print_r($test);
echo "</pre>";
我的猜測是,某個地方出現錯字...你會發布Notices嗎? – Wrikken
第二個代碼的輸出是什麼? – Novak
那麼,如果你在這樣的事情上工作,你可能會看到很多poltergeys的東西:那些曾經工作的代碼現在不行,反之亦然。所以現在當我要發佈第二個代碼的輸出時,它工作正常。請不要殘忍。 –