Collator::setAttribute

collator_set_attribute

Set collation attribute

Beschreibung

Objektorientierter Stil

public bool Collator::setAttribute ( int $attr , int $val )

Prozeduraler Stil

bool collator_set_attribute ( Collator $coll , int $attr , int $val )

Parameter-Liste

coll

Collator object.

attr

Attribute.

val

Attribute value.

Rückgabewerte

Gibt bei Erfolg TRUE zurück. Im Fehlerfall wird FALSE zurückgegeben.

Beispiele

Beispiel #1 collator_set_attribute example

<?php
$coll 
collator_create'en_CA' );
$val  collator_get_attribute$collCollator::NUMERIC_COLLATION );
if (
$val === false) {
    
// Handle error.
} elseif ($val === Collator::ON) {
    
// Do something useful.
}
?>

Siehe auch