Collator::getAttribute

collator_get_attribute

照合用の属性の値を取得する

説明

オブジェクト指向型

public intfalse Collator::getAttribute(int $attribute)

手続き型

intfalse collator_get_attribute(Collator $object, int $attribute)

collator の属性の値を取得します。

パラメータ

object

Collator オブジェクト。

attribute

値を取得したい属性。

戻り値

属性の値を返します。 失敗した場合に false を返します

例1 collator_get_attribute の例

<?php
$coll = collator_create( 'en_CA' );
$val = collator_get_attribute( $coll, Collator::NUMERIC_COLLATION );
if( $val === false )
{
    // エラー処理
}
?>

参考