私が行うときPHPの配列出力混乱
var_dump($galleryCategoriesThumb);
出力は
array(1) {
[0]=>
array(1) {
["Gallery"]=>
array(3) {
["id"]=>
string(3) "190"
["photofile"]=>
string(6) "50.jpg"
["gallery_category_id"]=>
string(2) "58"
}
}
}
私は
var_dump($galleryCategoriesThumb["photofile"]);
を行うと、私はNULL出力を得ることです。私は様々なオプションも試しました。 私がしたいのは、echo ["photofile"]です。助けてください。
それは働いた。どうもありがとうございました。 – nepalipunk