在`php`中如何对字符串进行排序
字符串按照`ASCII码`顺序排序
假设字符串为`hellotheworld123`
```
$str = 'hellotheworld123';
$arr = str_split($str);
asort($arr);
$str = implode('',$arr);
echo $str;
```
结果为`123deehhllloortw`
在`php`中如何对字符串进行排序
字符串按照`ASCII码`顺序排序
假设字符串为`hellotheworld123`
```
$str = 'hellotheworld123';
$arr = str_split($str);
asort($arr);
$str = implode('',$arr);
echo $str;
```
结果为`123deehhllloortw`