我有一个关联数组,当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/
)
答案 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
获取带有数字索引的数组副本。