如何从多维 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中文网其他相关文章!