php中数组自定义排序方法有很多,现在只提usort();不会保留原有键名。
unsort调用方法就是unsrot($arr,func);
注意:
如果func是写在当前类中的话,那么调用的方式是
unsort($arr, array($this, func));