|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2018-07-03 11:42 UTC] cmb@php.net
-Summary: nutsort dash order error
+Summary: natsort dash order error
-Status: Open
+Status: Not a bug
-Assigned To:
+Assigned To: cmb
[2018-07-03 11:42 UTC] cmb@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Thu Nov 06 12:00:01 2025 UTC |
Description: ------------ nutsort function does not order strings with dash charater in proper order. Test script: --------------- <?php $arr = [ 'Saint-Prex', 'Saint Prex', 'Saint Genis Pouilly', ]; natsort($arr); print_r($arr); Expected result: ---------------- Array ( [0] => Saint Genis Pouilly [2] => Saint Prex [1] => Saint-Prex ) Actual result: -------------- Array ( [0] => Saint-Prex [2] => Saint Genis Pouilly [1] => Saint Prex )