php 中英+数字排序 比如一张表test: id name 1 啊啊啊 2 jjjjj 3 变变变 4 334 6 aaa 8 111 9 sdfs 10 快
发布网友
发布时间:2022-12-24 02:00
我来回答
共2个回答
热心网友
时间:2023-10-06 06:37
思路这样:
把数据读到一个数组,然后使用
asort 之类的函数排序
参考
http://cn.php.net/manual/zh/function.asort.php
热心网友
时间:2023-10-06 06:37
select * from test order by name asc