Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在做一个项目,我想做的是对包含数字的变量进行排序..比如 123546 等..现在我想对它们进行排序,比如 123456 等,如果它在变量中,那么它很好,但如果它在数组中然后也非常感谢您!
假设所有数字实际上都是单数,这应该会解决它。
$numbers = str_split('123546'); sort($numbers); echo join('', $numbers);
演示
它用于str_split()将字符串转换为数组,然后对数组进行排序并连接在一起。
str_split()