 |
|
|  |
| iconv set encoding - 현재의 문자 인코딩을 설정 |
|
|
 |
15년 전 |
bool iconv_set_encoding ( string $type , string $charset )
반환값 : 성공할 경우 TRUE를, 실패할 경우 FALSE를 반환합니다.
<?php
iconv_set_encoding("internal_encoding", "UTF-8");
iconv_set_encoding("output_encoding", "ISO-8859-1");
?>
http://docs.php.net/manual/kr/function.iconv-set-encoding.php
===============================================
The value of type can be any one of those:
■ input_encoding
■ output_encoding
■ internal_encoding |
|
추천 : 463 |
추천
목록
|
|
|  |
|