duanaoou4105 2012-07-13 20:12
浏览 33
已采纳

php在php中排序长字符串

I have a directory listing that I need to sort. so far natsort works well except when a decimal is introduced. 009 comes after 009.1 I am trying to work on getting all the special char's out of the directory names and havent had issues with them so far. "http://10.1.1.1/manual/product/v02/secton 3/part 3.1 leveling/002.jpg" some get as long as 150 or so char's long. Since these are long strings with occasional decimals its not easy to get them properly sorted. I dont believe . are used any where except for decimals and the file extension

Every thing I have read so far ignores decimals. 0200 is before 100 in cases like that I would hope that specials would come after # and letters but appairently not.

  • 写回答

1条回答 默认 最新

  • douji6199 2012-07-13 20:20
    关注

    Given that you have sorting requirements that can't be met by any existing PHP functions, your best bet is to call usort() and write your own comparison function.

    Sample

    function cmp($a, $b)
    {
        return strcmp($a, $b); # replace with your own comparison logic
    }
    usort($array, 'cmp');
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
编辑
预览

报告相同问题?

手机看
程序员都在用的中文IT技术交流社区

程序员都在用的中文IT技术交流社区

专业的中文 IT 技术社区,与千万技术人共成长

专业的中文 IT 技术社区,与千万技术人共成长

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

客服 返回
顶部