如何從多維PHP 數組存取值
您面臨著一個多維PHP 數組,如print_r 所示($myarray),並且您渴望檢索特定值,例如電子郵件或性別。
解決方案:
要存取多維數組中的值,請透過在每個層級指定數組鍵來導航其維度。例如:
<code class="php">echo $myarray[0]['email']; // prints "[email protected]" echo $myarray[0]['gender']; // prints "male"</code>
檢查print_r 輸出中的鍵與縮排:
<code class="php">$myarray = Array ( [0] => Array ( [id] => 6578765 [name] => John Smith [first_name] => John [last_name] => Smith [link] => http://www.example.com [gender] => male [email] => [email protected] [timezone] => 8 [updated_time] => 2010-12-07T21:02:21+0000 ) )</code>
您可以推斷第一個元素([0]) 是包含使用者的子數組資料,其鍵指定屬性(例如電子郵件、性別)。
以上是如何存取多維 PHP 數組中的值?的詳細內容。更多資訊請關注PHP中文網其他相關文章!