The Collator::create() function is an inbuilt function in PHP which is used to create a new collector.
Syntax:
- Object oriented style:
Collator Collator::create( $locale )
- Procedural style:
Collator collator_create( $locale )
Parameters: This function accepts single parameter $locale which holds the required collation rules. If a null value is passed for the locale, the default locale collation rules will be used. If empty string (“”) or “root” are passed in the locale then UCA rules will be used.
Return Value: This function return the new instance of collator object on success, or NULL on error.
Below programs illustrate the Collator::create() function in PHP:
Program 1:
<?php $coll = collator_create( 'en_US' ); if (isset( $coll )){ echo "Collector created" ; } else { echo "Collector not created" ; } ?> |
Collector created
Program 2:
<?php $coll = collator_create( 'en_US' ); // Declare array and initialize it $arr = array ( 'geek' , 'geeK' , 'Geek' , 'neveropen' ); // Sort array collator_sort( $coll , $arr ); // Display array content var_export( $arr ); ?> |
array ( 0 => 'geek', 1 => 'geeK', 2 => 'Geek', 3 => 'neveropen', )
Reference: https://www.php.net/manual/en/collator.create.php