gpt4 book ai didi

PHP:按键对 JSON 数据进行排序

转载 作者:行者123 更新时间:2023-12-02 03:00:25 27 4
gpt4 key购买 nike

我想使用 PHP 按字母顺序对单行 JSON 数据进行排序。所以最后:

{"one":"morning","two":"afternoon","three":"evening","four":"night"}

变成:

{"four":"night","one":"morning","three":"evening","two":"afternoon"}

我尝试使用ksort但没有成功:

$icons = json_decode(file_get_contents("icons.json"));
ksort($icons);
foreach($icons as $icon => $code){...}

最佳答案

ksort 适用于数组,不适用于字符串:

$array = json_decode($json, true);
ksort($array);
echo json_encode($array);

关于PHP:按键对 JSON 数据进行排序,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23887083/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com