Collator::getSortKey()

string getSortKey(string $string) Not supported. Get sorting key for a string. Parameters string $string The string to produce the key from Return Value string The collation key for $string Exceptions MethodNotImplementedException See also http://www.php.net/manual/en/collator.getsortkey.php

Collator::getLocale()

string getLocale(int $type = Locale::ACTUAL_LOCALE) Returns the collator's locale. Parameters int $type Not supported. The locale name type to return (Locale::VALIDLOCALE or Locale::ACTUALLOCALE) Return Value string The locale used to create the collator. Currently always returns "en".

Collator::getErrorMessage()

string getErrorMessage() Returns collator's last error message. Always returns the UZEROERROR_MESSAGE class constant value. Return Value string The error message from last collator call

Collator::getErrorCode()

int getErrorCode() Returns collator's last error code. Always returns the UZEROERROR class constant value. Return Value int The error code from last collator call

Collator::getAttribute()

bool|int getAttribute(int $attr) Not supported. Get a value of an integer collator attribute. Parameters int $attr An attribute specifier, one of the attribute constants Return Value bool|int The attribute value on success or false on error Exceptions MethodNotImplementedException See also http://www.php.net/manual/en/collator.getattribute.php

Collator::create()

static Collator create(string $locale) Static constructor. Parameters string $locale The locale code. The only currently supported locale is "en" (or null using the default locale, i.e. "en") Return Value Collator Exceptions MethodArgumentValueNotImplementedException When $locale different than "en" or null is passed

Collator::compare()

bool|int compare(string $str1, string $str2) Not supported. Compare two Unicode strings. Parameters string $str1 The first string to compare string $str2 The second string to compare Return Value bool|int Return the comparison result or false on failure: 1 if $str1 is greater than $str2 0 if $str1 is equal than $str2 -1 if $str1 is less than $str2 Exceptions MethodNotImplementedException See also http://www.php.net/manual/en/collator.compare.php

Collator::asort()

bool asort(array $array, int $sortFlag = self::SORT_REGULAR) Sort array maintaining index association. Parameters array $array &$array Input array int $sortFlag Flags for sorting, can be one of the following: Collator::SORTREGULAR - compare items normally (don't change types) Collator::SORTNUMERIC - compare items numerically Collator::SORT_STRING - compare items as strings Return Value bool True on success or false on failure

Collator

class Collator Replacement for PHP's native {@link \Collator} class. The only methods currently supported in this class are: {@link __construct} {@link create} {@link asort} {@link getErrorCode} {@link getErrorMessage} {@link getLocale} Constants FRENCH_COLLATION ALTERNATE_HANDLING CASE_FIRST CASE_LEVEL NORMALIZATION_MODE STRENGTH HIRAGANA_QUATERNARY_MODE NUMERIC_COLLATION DEFAULT_VALUE PRIMARY SECONDARY TERTIARY DEFAULT_STRENGTH QUATERNAR

CodeHelper::getName()

string getName() Returns the canonical name of this helper. Return Value string The canonical name