PHP:如果它是一个关联数组,如何通过数值偏移获取数组的值?

时间:2012-06-27 20:31:31

标签: php arrays

我有一个关联数组,当var dumped看起来像这样:

Array
(
    [tumblr] => Array
        (
            [type] => tumblr
            [url] => http://tumblr.com/
        )

    [twitter] => Array
        (
            [type] => twitter
            [url] => https://twitter.com/
        )

)

正如您所看到的,键是自定义“tumblr”和“twitter”而不是数字0和1.

有时我需要通过自定义键获取值,有时我需要通过数字键获取值。

有什么方法可以让$myarray[0]输出:

(
    [type] => tumblr
    [url] => http://tumblr.com/
)

2 个答案:

答案 0 :(得分:9)

您可以通过array_values()运行数组:

$myarray = array_values( $myarray);

现在你的数组看起来像是:

array(2) {
  [0]=>
  array(2) {
    ["type"]=>
    string(6) "tumblr"
    ["url"]=>
    string(18) "http://tumblr.com/"
  } ...

这是因为array_values()只会从数组中获取值,并将数组重置/重新排序/重新键入为数字数组。

答案 1 :(得分:0)

您可以使用array_values获取带有数字索引的数组副本。