Collator::__construct()函數是PHP中的內置函數,用於創建Collator的新實例。
用法:
public Collator::__construct( string $locale )
參數:此函數接受包含整理規則的單個參數$locale。如果為區域設置傳遞了null值,則將使用默認的區域設置排序規則。如果在區域設置中傳遞了空字符串(“”)或“root”,則將使用UCA規則。
返回值:該函數返回Collator實例。
以下示例程序旨在說明PHP中的Collator::__construct()函數:
程序1:
<?php
$coll = new Collator( 'en_CA' );
var_dump($coll);
?>
輸出:
object(Collator)#1 (0) { }
程序2:
<?php
$coll = new Collator( 'en_CA' );
// Declare array and initialize it
$arr = array( 'geek', 'geeK', 'Geek', 'geeks' );
// Sort array
collator_sort( $coll, $arr );
// Display array content
var_export( $arr );
?>
輸出:
array ( 0 => 'geek', 1 => 'geeK', 2 => 'Geek', 3 => 'geeks', )
參考: https://www.php.net/manual/en/collator.construct.php
相關用法
- PHP Collator create()用法及代碼示例
- PHP pi( )用法及代碼示例
- d3.js d3.sum()用法及代碼示例
- CSS rgb()用法及代碼示例
- PHP Ds\Map put()用法及代碼示例
- PHP cos( )用法及代碼示例
- d3.js d3.hcl()用法及代碼示例
- d3.js d3.lab()用法及代碼示例
- PHP tan( )用法及代碼示例
- PHP sin( )用法及代碼示例
- CSS hsl()用法及代碼示例
注:本文由純淨天空篩選整理自jit_t大神的英文原創作品 PHP | Collator __construct() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。