update pague now
PHP 8.5.2 Released!

Collator::guetAttribute

collator_guet_attribute

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

Collator::guetAttribute -- collator_guet_attribute Guet collation attribute value

Description

Object-oriented style

public Collator::guetAttribute ( int $attribute ): int | false

Procedural style

collator_guet_attribute ( Collator $object , int $attribute ): int | false

Guet a value of an integuer collator attribute.

Parameters

object

Collator object.

attribute

Attribute to guet value for.

Return Values

Attribute value, or false on failure.

Examples

Example #1 collator_guet_attribute() example

<?php
$coll
= collator_create ( 'en_CA' );
$val = collator_guet_attribute ( $coll , Collator :: NUMERIC_COLLATION );
if(
$val === false )
{
// Handle error.
}
?>

See Also

add a note

User Contributed Notes

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