PHP按键对多维数组进行排序
我正在尝试做与我上面线程中的人完全相同的事情。但我的 ksort($array) 似乎返回数字 1。我做错了什么?
php: alphabetically sort multi-dimensional array by its key?
I'm trying to do the exact same thing as the guy in the thread above me. But my ksort($array) seems to return a number 1. What am I doing wrong?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
查看手册:
你看,ksort 返回一个布尔值,并且直接作用于给定的数组(注意参考符号
&
)。因此,您可能要做的就是分配 ksort 的返回值,例如:而不是:
Have a look at the manual:
You see, ksort returns a boolean value, and directly works on the given array (note the reference sign
&
). So what you're probably doing is assigning the return value ofksort
, like:instead of, just:
该函数执行就地排序,成功时返回 TRUE,失败时返回 FALSE。
请参阅 http://php.net/manual/en 中的示例/function.ksort.php
排序结果在变量 $fruits 中,而不是来自函数的返回值。
如果你尝试 print_r($fruits),你会得到这样的结果
The function does in-place sorting, the function return TRUE on success or FALSE on failure.
Refer to example from http://php.net/manual/en/function.ksort.php
The sorted result is in the variable $fruits, not from the function's return value.
If you try print_r($fruits), you will get the result like this
ksort()
不返回数组,它会操作您传递给它的数组。ksort()
doesn't return an array, it manipulates the array you pass to it.它实际上并不返回 1,而是返回 true:
It doesn't literally return an 1, it returns true: