我有一系列月份名称目前订购如(“四月”,“八月”,“二月”)等.我想重新订购此列表,以便它处于正常的月份顺序,如(“一月”,“二月三月”)
这个数组是从SHOW TABLES SQL查询中填充的,不幸的是SHOW TABLES没有ORDER BY参数,所以我认为最好的办法是将它们添加到数组中并重新排序数组以获得我想要的内容.@H_403_2@
将月份转换为数值.然后使用sort()以数字顺序排列数组
您可以使用此问题:convert month from name to number@H_403_2@
@Matthew的回答似乎运作良好:@H_403_2@
$date = date_parse('July');; echo $date["month"];
工作方案@H_403_2@
$months = array("April","August","February"); usort($months,"compare_months"); var_dump($months); function compare_months($a,$b) { $monthA = date_parse($a); $monthB = date_parse($b); return $monthA["month"] - $monthB["month"]; }