我的问题是。我有一个数组,其中的元素以这种方式定位:
[2] => '2 的值'
[3] => '3 的值'
[1] => '1 的值'
我想以这种方式出现在 . 但是当向 PHP/HTML 发送数据时,它们是有序的。
[1] => '1 的值'
[2] => '2 的值'
[3] => '3 的值'
注意:必须保留密钥,例如我不能执行以下操作:
[1] => 'Value of 2'
[2] => 'Value of 3'
[3] => 'Value of 1'
我应该保留钥匙到位。
(我在用谷歌翻译)
编辑:
我在 CakePHP 中使用这个字段:
<?php echo $this->Form->input('item_id', array('label' => 'Item', 'class' => 'span3', 'empty' => 'Escolha um item', 'data-depend-on' => '#ActionEstoqueId', 'data-source' => $this->Html->url(array('controller' => 'itens', 'action' => 'index', 'ext' => 'json'), true))) ?>