Skip to content

Instantly share code, notes, and snippets.

@Kovah
Created January 9, 2022 12:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Kovah/c7e4584c9bd45ff30d5ca344dd37a6bc to your computer and use it in GitHub Desktop.
Save Kovah/c7e4584c9bd45ff30d5ca344dd37a6bc to your computer and use it in GitHub Desktop.
PHP Tip natsort()
<?php
// @see https://www.php.net/manual/en/function.natsort.php
$numbers = [26, 6, 2, 65];
sort($numbers);
// 2, 26, 6, 65
natsort($numbers);
// 2, 6, 26, 65
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment