5

我有一个关联数组,当 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/
)
4

2 回答 2

8

您可以通过以下方式运行数组array_values()

$myarray = array_values( $myarray);

现在你的数组看起来像:

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

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

于 2012-06-27T20:32:47.790 回答
0

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

于 2012-06-27T20:33:06.860 回答