Collator::create

collator_create

(PHP 5 >= 5.3.0, PHP 7, PHP 8, PECL intl >= 1.0.0)

Collator::create -- collator_create创建排序器

说明

面向对象风格

public static Collator::create(string $locale): ?Collator

过程式风格

collator_create(string $locale): ?Collator

字符串将使用已指定的选项进行比较。

参数

locale

包含所需排序规则的区域设置。可以传递区域设置的特殊值 - 如果为区域设置传递空 string,将使用默认区域设置排序规则。如果传递 "root",将使用 » UCA 规则。

返回值

返回 Collator 对象的新实例,或在错误时返回 null

示例

示例 #1 collator_create() 示例

<?php
$coll
= collator_create( 'en_US' );

if( !isset(
$coll ) ) {
printf( "Collator creation failed: %s\n", intl_get_error_message() );
exit(
1 );
}
?>

参见

添加笔记

用户贡献笔记

此页面没有用户贡献笔记。
To Top