Collator::setAttribute

collator_set_attribute

(PHP 5 >= 5.3.0, PHP 7, PECL intl >= 1.0.0)

Collator::setAttribute -- collator_set_attributeSet collation attribute

Opis

Styl obiektowy

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

Styl proceduralny

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

Parametry

coll

Collator object.

attr

Attribute.

val

Attribute value.

Zwracane wartości

Zwraca TRUE w przypadku powodzenia, FALSE w przypadku błędu.

Przykłady

Przykład #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.
}
?>

Zobacz też:

add a note add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top