update : 2015.11.03
php.shukuma.com검색:
|
iconv(PHP 4 >= 4.0.5, PHP 5, PHP 7) iconv — Convert string to requested character encoding 설명
string iconv
( string
$in_charset
, string $out_charset
, string $str
)
Performs a character set conversion on the string
인수
반환값
Returns the converted string실패 시 변경점
예제
Example #1 iconv() example
<?php 위 예제의 출력 예시: Original : This is the Euro symbol '€'. TRANSLIT : This is the Euro symbol 'EUR'. IGNORE : This is the Euro symbol ''. Plain : Notice: iconv(): Detected an illegal character in input string in .\iconv-example.php on line 7 |