Collator::setAttribute

collator_set_attribute

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

Collator::setAttribute -- collator_set_attributeSet collation attribute

Description

Object-oriented style

public Collator::setAttribute(int $attribute, int $value): bool

Procedural style

collator_set_attribute(Collator $object, int $attribute, int $value): bool

Parameters

object

Collator object.

attribute

Attribute.

value

Attribute value.

Return Values

Returns true on success or false on failure.

Examples

Example #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.
}
?>

See Also

add a note add a note

User Contributed Notes

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