VOOZH about

URL: https://www.geeksforgeeks.org/php/arrayobject-natcasesort-function-in-php/

⇱ ArrayObject natcasesort() Function in PHP - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

ArrayObject natcasesort() Function in PHP

Last Updated : 11 Jul, 2025
The natcasesort() function of the ArrayObject class in PHP is used to sort the elements of the ArrayObject following a natural order case sensitive sorting algorithm. Natural ordering means to arrange the elements in a order a normal human being would do. Syntax:
void natcasesort() 
Parameters: This function does not accepts any parameters. Return Value: This function does not returns any value. Below programs illustrate the above function: Program 1:
Output:
ArrayObject Object
(
 [storage:ArrayObject:private] => Array
 (
 [d] => are
 [a] => awesome
 [b] => geeks
 [e] => YAAY
 )

)
Program 2:
Output:
ArrayObject Object
(
 [storage:ArrayObject:private] => Array
 (
 [92] => are
 [10] => awesome
 [45] => geeks
 )

)
Reference: https://www.php.net/manual/en/arrayobject.natcasesort.php
Comment