(PHP 5 >= 5.3.0, PECL intl >= 1.0.0)
Collator::setAttribute -- collator_set_attribute — Set collation attribute
Object oriented style
Procedural style
Gibt bei Erfolg TRUE zurück. Im Fehlerfall wird FALSE zurückgegeben.
Beispiel #1 collator_set_attribute() example
<?php
$coll = collator_create( 'en_CA' );
$val  = collator_get_attribute( $coll, Collator::NUMERIC_COLLATION );
if ($val === false) {
    // Handle error.
} elseif ($val === Collator::ON) {
    // Do something useful.
}
?>