Natsort () arranges JSON data times wrong. Workaround

Source: Internet
Author: User
Tags array sort
Natsort () arranges JSON data times wrong.
PHP Code
  
   $json = ' [{"name": "A1"},{"Name": "A10"},{"name": "A12"},{"name": "A3"},{"name": "A5"},{"name": "B21"},{"name": "B2"},{ "Name": "B11"}] '; Natsort ($json); $data = Json_decode ($json); foreach ($data as $row) {    echo $row->name. '
';//}


Why would you prompt warning:natsort () expects parameter 1 to is array, string given in d:\www\test.php?
What is the difference between natsort () and strnatcmp ()?
Thank you.


------Solution--------------------
Natsort is an array sort function that cannot act on character channeling

------Solution--------------------
PHP code
 $json = ' [{' name ': ' A1 '},{' name ': ' A10 '},{' name ': ' A12 "},{" name ":" A3 "},{" name ":" A5 "},{" name ":" B21 "},{" name ":" B2 "},{" name ":" B11 "}] '; $data = Json_decode ($json); Usort ($    Data, ' CMP '), function cmp ($a, $b) {if ($a->name = = $b->name) return 0; Return $a->name > $b->name? 1:-1;} foreach ($data as $row) {echo $row->name. ' 
';/}
  • Related Article

    Contact Us

    The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

    If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.