Collator::getStrength
collator_get_strength
(PHP 5 >= 5.3.0, PHP 7, PECL intl >= 1.0.0)
Collator::getStrength -- collator_get_strength — 現在の照合強度を取得する
説明
オブジェクト指向型
public
Collator::getStrength
( void
) : int
手続き型
返り値
現在の照合強度、あるいはエラー時に boolean FALSE を返します。
例
例1 collator_get_strength() の例
<?php
$coll = collator_create( 'en_US' );
$strength = collator_get_strength( $coll );
?>