update : 2015.11.03
php.shukuma.com

검색:
 
 
Get sorting key for a string

Collator::getSortKey

collator_get_sort_key

(PHP 5 >= 5.3.11, PECL intl >= 1.0.3)

Collator::getSortKey -- collator_get_sort_keyGet sorting key for a string

설명

객체 기반 형식

public string Collator::getSortKey ( string $str )

절차식 형식

string collator_get_sort_key ( Collator $coll , string $str )

Return collation key for a string.

인수

coll

Collator object.

str

The string to produce the key from.

반환값

Returns the collation key for the string. Collation keys can be compared directly instead of strings.

Warning

이 함수는 논리 FALSE를 반환하지만, 논리 FALSE로 취급할 수 있는 다른 값을 반환할 수 있습니다. 자세한 정보는 논리형 섹션을 참고하십시오. 이 함수의 반환값을 확인하려면 === 연산자를 이용하십시오.

예제

Example #1 collator_get_sort_key()example

<?php
$s1 
'Hello';

$coll collator_create'en_US' );
$res  collator_get_sort_key$coll$s1);

echo 
urlencode($res);
?>

위 예제의 출력:


71%3F%3FE%01%09%01%8F%08%00

참고