(PHP 5 >= 5.3.0, PECL intl >= 1.0.0)
Collator::getAttribute -- collator_get_attribute — 照合用の属性の値を取得する
オブジェクト指向型
手続き型
collator の属性の値を取得します。
属性の値、あるいはエラー時に boolean FALSE を返します。
例1 collator_get_attribute() の例
<?php
$coll = collator_create( 'en_CA' );
$val = collator_get_attribute( $coll, Collator::NUMERIC_COLLATION );
if( $val === false )
{
// エラー処理
}
?>