HEX
Server: nginx/1.24.0
System: Linux localhost 5.15.0-46-generic #49-Ubuntu SMP Thu Aug 4 18:03:25 UTC 2022 x86_64
User: www (1000)
PHP: 8.3.27
Disabled: passthru,exec,system,putenv,chroot,chgrp,chown,shell_exec,popen,proc_open,pcntl_exec,ini_alter,ini_restore,dl,openlog,syslog,readlink,symlink,popepassthru,pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,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,imap_open,apache_setenv
Upload Files
File: /www/server/php/83/src/ext/spl/tests/arrayObject_natcasesort_basic1.phpt
--TEST--
SPL: Test ArrayObject::natcasesort() function : basic functionality
--FILE--
<?php
/* Sort the entries by values using case insensitive "natural order" algorithm.
 * Source code: ext/spl/spl_array.c
 * Alias to functions:
 */

echo "*** Testing ArrayObject::natcasesort() : basic functionality ***\n";

$ao1 = new ArrayObject(array('boo10','boo1','boo2','boo22','BOO5'));
$ao2 = new ArrayObject(array('a'=>'boo10','b'=>'boo1','c'=>'boo2','d'=>'boo22','e'=>'BOO5'));
var_dump($ao1->natcasesort());
var_dump($ao1);
try {
    var_dump($ao2->natcasesort('blah'));
} catch (ArgumentCountError $e) {
    echo $e->getMessage(), "\n";
}
var_dump($ao2);
?>
--EXPECT--
*** Testing ArrayObject::natcasesort() : basic functionality ***
bool(true)
object(ArrayObject)#1 (1) {
  ["storage":"ArrayObject":private]=>
  array(5) {
    [1]=>
    string(4) "boo1"
    [2]=>
    string(4) "boo2"
    [4]=>
    string(4) "BOO5"
    [0]=>
    string(5) "boo10"
    [3]=>
    string(5) "boo22"
  }
}
ArrayObject::natcasesort() expects exactly 0 arguments, 1 given
object(ArrayObject)#2 (1) {
  ["storage":"ArrayObject":private]=>
  array(5) {
    ["a"]=>
    string(5) "boo10"
    ["b"]=>
    string(4) "boo1"
    ["c"]=>
    string(4) "boo2"
    ["d"]=>
    string(5) "boo22"
    ["e"]=>
    string(4) "BOO5"
  }
}