Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有个问题。我的数组看起来像这样
Array ( [27] => Array ( [parent_id] => 26 [name] => asd [item_id] => 27 ) )
我想呼应这个名字,但我不知道怎么做,我尝试了多个 foreaches 和$array['name'],$array[1]['name']但没有任何效果。
$array['name']
$array[1]['name']
我希望有一个人可以帮助我
$array[27]['name']可以再试一次
$array[27]['name']
没关系,我的解决方案是 $array[27]['name']。
你也可以做
print_r($array[27]);
这将显示整个数组。