我有一个这样的索引数组: $indexed = array(0=>2,1=>7,3=>9)
但我需要一个没有索引的数组,如下所示: $notIndexed = array(2,7,9)
Zend_Form 不接受 $indexed 作为函数 populate() 的参数,但与 $notIndexed 一起工作正常
我如何动态地将 $indexed 转换为 $notIndexed
感谢您的回答
我有一个这样的索引数组: $indexed = array(0=>2,1=>7,3=>9)
但我需要一个没有索引的数组,如下所示: $notIndexed = array(2,7,9)
Zend_Form 不接受 $indexed 作为函数 populate() 的参数,但与 $notIndexed 一起工作正常
我如何动态地将 $indexed 转换为 $notIndexed
感谢您的回答