Tuesday, October 7, 2025
HomeLanguagesPHP | Collator create() Function

PHP | Collator create() Function

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


Output:

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 ); 
?> 


Output:

array (
  0 => 'geek',
  1 => 'geeK',
  2 => 'Geek',
  3 => 'neveropen',
)

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

RELATED ARTICLES

Most Popular

Dominic
32340 POSTS0 COMMENTS
Milvus
86 POSTS0 COMMENTS
Nango Kala
6708 POSTS0 COMMENTS
Nicole Veronica
11872 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11936 POSTS0 COMMENTS
Shaida Kate Naidoo
6829 POSTS0 COMMENTS
Ted Musemwa
7090 POSTS0 COMMENTS
Thapelo Manthata
6780 POSTS0 COMMENTS
Umr Jansen
6784 POSTS0 COMMENTS