2014-03-05 64 views
-3

我有一個數組,具有下面顯示的嵌套數組,我的目標是使用PHP並通過此數組循環通過這個數組抽取父數據和子數據。閱讀嵌套數組?

$NestedArray = array(
      "Name" => array(
         "Phone"=>"Text", 
         "Email"=>"12" 
      ) 
      "Company" => array(
         "Phone"=>"Text", 
         "Email"=>"12" 
      ) 
); 

有人請告訴我如何使用php循環這個數組。謝謝。

+1

http://stackoverflow.com/questions/16477943/loop-through-array- in-php – Mattt

+1

'foreach構造提供了一種簡單的方法來遍歷數組.'請參閱[here](http://in2.php.net/manual/en/control-structures.foreach.php) –

回答

1

使用foreach構建

foreach($NestedArray as $sKey=>$subarray) 
{ 
    // You can print the subarray key here too 
    foreach($subarray as $key=>$value) 
    { 
     print $key + ": " + $value; 
    } 
} 

,如果你要打印調試的目的,使用print_r

print_r($NestedArray); 
+1

謝謝Joshua。 – user982853