Collator
PHP Manual

Collator::getStrength

collator_get_strength

(No version information available, might be only in CVS)

Collator::getStrength -- collator_get_strength — Get current collation strength

Description

Object oriented style

integer Collator::getStrength ( void )

Procedural style

integer collator_get_strength ( Collator $coll )

Liste de paramètres

coll

Collator object.

Valeurs de retour

Returns current collation strength, or boolean FALSE on error.

Exemples

Exemple #1 collator_get_strength() example

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

Voir aussi


Collator
PHP Manual