我想从 cakePhp 中的 Set::combine 中获取一个数字数组。
Set::combine($results, '{n}', '{n}.Tag.name')
但这并不像我预期的那样工作,因为 '{n}' 是数组而不是索引,就像我想的那样。这也不起作用
Set::combine($results, '', '{n}.Tag.name')
//OR
Set::combine($results, '{n}.Tag.name')
在文档http://book.cakephp.org/2.0/en/core-utility-libraries/set.html我没有找到任何对我有帮助的东西。
是否可以使用 Set::combine 以相同的数字顺序获取数组,就像将其传递给保留数字键的函数一样,还是我必须以另一种方式转换键?