-1

我有一个这样的索引数组: $indexed = array(0=>2,1=>7,3=>9)

但我需要一个没有索引的数组,如下所示: $notIndexed = array(2,7,9)

Zend_Form 不接受 $indexed 作为函数 populate() 的参数,但与 $notIndexed 一起工作正常

我如何动态地将 $indexed 转换为 $notIndexed

感谢您的回答

4

3 回答 3

6
$notIndexed = array_values($indexed);
于 2013-07-10T22:56:43.360 回答
1

你是认真的?使用,array_values($indexed)

http://php.net/manual/en/function.array-values.php

于 2013-07-10T22:57:44.153 回答
0

$notindex = array_values($indexed)

于 2013-07-10T22:57:03.163 回答