PHP Doku:: Get collation attribute value - collator.getattribute.html

Verlauf / Chronik / History: (1) anzeigen

Sie sind hier:
Doku-StartseitePHP-HandbuchFunktionsreferenzUnterstützung menschlicher Sprache und ZeichenkodierungInternationalization FunctionsThe Collator classCollator::getAttribute -- collator_get_attribute

Ein Service von Reinhard Neidl - Webprogrammierung.

The Collator class

<<Collator::create -- collator_create

Collator::getErrorCode -- collator_get_error_code>>

Collator::getAttribute

collator_get_attribute

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

Collator::getAttribute -- collator_get_attributeGet collation attribute value

Beschreibung

Object oriented style

int Collator::getAttribute ( int $attr )

Procedural style

int collator_get_attribute ( Collator $coll , int $attr )

Get a value of an integer collator attribute.

Parameter-Liste

coll

Collator object.

attr

Attribute to get value for.

Rückgabewerte

Attribute value, or boolean FALSE on error.

Beispiele

Beispiel #1 collator_get_attribute() example

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

Siehe auch


Keine BenutzerBeiträge.
- Beiträge aktualisieren...



PHP Powered Diese Seite bei php.net
The PHP manual text and comments are covered by the Creative Commons Attribution 3.0 License © the PHP Documentation Group - Impressum - mail("TO:Reinhard Neidl",...)