Collator::setAttribute
collator_set_attribute
(PHP 5 >= 5.3.0, PHP 7, PHP 8, PECL intl >= 1.0.0)
Collator::setAttribute -- collator_set_attribute — Set collation attribute
Beschreibung
Objektorientierter Stil
$attribute
, int $value
): boolProzeduraler Stil
Rückgabewerte
Gibt bei Erfolg true
zurück. Bei einem Fehler wird false
zurückgegeben.
Beispiele
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.
}
?>
Siehe auch
- Collator constants
- collator_get_attribute() - Get collation attribute value
- collator_set_strength() - Set collation strength