Open In App

PHP | Collator create() Function

The Collator::create() function is an inbuilt function in PHP which is used to create a new collector.

Syntax:



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";
}
?>

Output:
Collector created

Program 2:




<?php 
$coll = collator_create( 'en_US' ); 
  
// Declare array and initialize it 
$arr = array( 'geek', 'geeK', 'Geek', 'geeks' ); 
  
// Sort array 
collator_sort( $coll, $arr ); 
  
// Display array content 
var_export( $arr ); 
?> 

Output:
array (
  0 => 'geek',
  1 => 'geeK',
  2 => 'Geek',
  3 => 'geeks',
)

Reference: https://www.php.net/manual/en/collator.create.php

Article Tags :