简体   繁体   中英

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 .

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

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