Collator::setAttribute

collator_set_attribute

Set collation attribute

Description

Object-oriented style

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

Procedural style

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

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');
collator_set_attribute($coll, Collator::NORMALIZATION_MODE, Collator::ON);
?>

See Also