Collator::getAttribute
collator_get_attribute
(PHP 5 >= 5.3.0, PECL intl >= 1.0.0)
Collator::getAttribute -- collator_get_attribute — Get collation attribute value
Descrierea
Stil obiect-orientat
int
Collator::getAttribute
( int
$attr
)Stil procedural
Get a value of an integer collator attribute.
Valorile întoarse
Attribute value, or boolean FALSE on error.
Exemple
Example #1 collator_get_attribute() example
<?php
$coll = collator_create( 'en_CA' );
$val = collator_get_attribute( $coll, Collator::NUMERIC_COLLATION );
if( $val === false )
{
// Handle error.
}
?>
Vedeți de asemenea
- Collator constants
- collator_set_attribute() - Set collation attribute
- collator_get_strength() - Get current collation strength
There are no user contributed notes for this page.
