|
update : 2015.11.03
php.shukuma.com검색:
|
IntlChar::chr(PHP 7) IntlChar::chr — Return Unicode character by code point value 설명Returns a string containing the character specified by the Unicode code point value. This function compliments IntlChar::ord(). 인수반환값A string containing the single character specified by the Unicode code point value. 예제Example #1 Testing different code points
<?php위 예제의 출력:
string(1) "A"
string(1) "A"
string(1) "{"
string(3) "☃"
|