php字符串排序

在`php`中如何对字符串进行排序

字符串按照`ASCII码`顺序排序

假设字符串为`hellotheworld123`

```
$str = 'hellotheworld123';
$arr = str_split($str);
asort($arr);
$str = implode('',$arr);
echo $str;
```
结果为`123deehhllloortw`

    A+
发布日期:2020年12月06日  所属分类:未分类

发表评论

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen: