从多维 PHP 数组获取单个值
使用多维 PHP 数组时,可能会出现需要访问数组中的特定值的情况大批。考虑以下示例:
<code class="php">$myarray = [ [ '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>
要访问此数组中的特定值,您需要使用适当的数组索引和键。例如,要获取电子邮件地址,您可以使用以下代码:
<code class="php">echo $myarray[0]['email']; // Outputs: [email protected]</code>
同样,如果您想获取性别,您可以使用:
<code class="php">echo $myarray[0]['gender']; // Outputs: male</code>
以上是如何从多维 PHP 数组中提取特定值?的详细内容。更多信息请关注PHP中文网其他相关文章!