从多维 PHP 数组中提取值
PHP 中的多维数组可能会给访问特定数据带来挑战。考虑这个多维数组,如 print_r($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 ) )
要检索单个值,例如电子邮件,不能使用 $myarray['email']。相反,请观察数组中的键和缩进:
[0][email] [0][gender]
因此,要访问特定值,请使用以下语法:
<code class="php">echo $myarray[0]['email']; // Outputs the email address echo $myarray[0]['gender']; // Outputs the gender</code>
此方法允许您提取单个数据项轻松地从复杂的多维数组中提取。
以上是如何从多维 PHP 数组中提取值?的详细内容。更多信息请关注PHP中文网其他相关文章!