简体   繁体   English

如何从php中的多维数组获取所有特定的键值?

[英]How to get all the specific key value from multidimensional array in php?

How can I get the all the 'name' and 'city' value back in an array from the following multidimensional array? 如何从以下多维数组中获取数组中的所有“名称”和“城市”值?

$myarray=Array(Array('name' => 'A','id' => '1', 'phone' => '416-23-55',
Base => Array ('city'  => 'toronto'),'EBase' => Array('city' => 'North York'),
'Qty' => '1'),  (Array('name' =>'B','id' => '1','phone' => '416-53-66','Base' => 
Array  ('city' => 'qing'), 'EBase' => Array('city' => 'chong'),'Qty' => '2')));

I expect the returned value be 我希望返回的值是

$namearray=Array('A','B');
$basecityarray=Array('toronto','qing');
$Ebasecityarray=Array('North York','chong');

Thank you! 谢谢!

You can definitely try something like this: 您绝对可以尝试这样的事情:

$shop = array( array( 'Title' => "rose", 
                  'Price' => 1.25,
                  'Number' => 15 
                ),
           array( 'Title' => "daisy", 
                  'Price' => 0.75,
                  'Number' => 25,
                ),
           array( 'Title' => "orchid", 
                  'Price' => 1.15,
                  'Number' => 7 
                )
         );

You can access the first row as 您可以按以下方式访问第一行:

echo $shop[0][0]." costs ".$shop[0][1]." and you get ".$shop[0][2]."<br />";

or $shop[0]->Title will return to you rose . $shop[0]->Title将返回给您rose

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM