PHP按键对多维数组进行排序

发布于 2024-12-02 09:05:09 字数 218 浏览 0 评论 0原文

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

木有鱼丸 2024-12-09 09:05:09

查看手册

bool ksort ( array &$array [, int $sort_flags = SORT_REGULAR ] )

你看,ksort 返回一个布尔值,并且直接作用于给定的数组(注意参考符号&)。因此,您可能要做的就是分配 ksort 的返回值,例如:

$array = ksort($array);

而不是:

ksort($array);

Have a look at the manual:

bool ksort ( array &$array [, int $sort_flags = SORT_REGULAR ] )

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 of ksort, like:

$array = ksort($array);

instead of, just:

ksort($array);
地狱即天堂 2024-12-09 09:05:09

该函数执行就地排序,成功时返回 TRUE,失败时返回 FALSE。

请参阅 http://php.net/manual/en 中的示例/function.ksort.php

<?php
$fruits = array("d"=>"lemon", "a"=>"orange", "b"=>"banana", "c"=>"apple");
ksort($fruits);
foreach ($fruits as $key => $val) {
    echo "$key = $val\n";
}
?>

排序结果在变量 $fruits 中,而不是来自函数的返回值。

如果你尝试 print_r($fruits),你会得到这样的结果

Array
(
    [a] => orange
    [b] => banana
    [c] => apple
    [d] => lemon
)

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

<?php
$fruits = array("d"=>"lemon", "a"=>"orange", "b"=>"banana", "c"=>"apple");
ksort($fruits);
foreach ($fruits as $key => $val) {
    echo "$key = $val\n";
}
?>

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

Array
(
    [a] => orange
    [b] => banana
    [c] => apple
    [d] => lemon
)
小草泠泠 2024-12-09 09:05:09

ksort() 不返回数组,它会操作您传递给它的数组。

ksort() doesn't return an array, it manipulates the array you pass to it.

伤感在游骋 2024-12-09 09:05:09

It doesn't literally return an 1, it returns true:

http://php.net/manual/en/function.ksort.php

Return Values

Returns TRUE on success or FALSE on failure.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文