Collator::getStrength

collator_get_strength

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

Collator::getStrength -- collator_get_strengthGet current collation strength

Опис

Об'єктно-орієнтований стиль

public int Collator::getStrength ( void )

Процедурний стиль

int collator_get_strength ( Collator $coll )

Параметри

coll

Collator object.

Значення, що повертаються

Returns current collation strength, or boolean FALSE on error.

Приклади

Приклад #1 collator_get_strength() example

<?php
$coll     
collator_create'en_US' );
$strength collator_get_strength$coll );
?>

Прогляньте Також

add a note add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top