(PHP 4 >= 4.0.5, PHP 5)
iconv_set_encoding — 为字符编码转换设定当前设置
$type
, string $charset
)
将 type
设置的值从内部配置变量更改为 charset
。
type
type
的值可以是以下其中任意一个:
charset
字符集。
成功时返回 TRUE
, 或者在失败时返回 FALSE
。
Example #1 iconv_set_encoding() 例子
<?php
iconv_set_encoding("internal_encoding", "UTF-8");
iconv_set_encoding("output_encoding", "ISO-8859-1");
?>
pasamio at gmail dot com (2008-01-03 23:18:00)
On PHP 5.2.5 when iconv.*_encoding values are set using php_admin_value in the Apache configuration file, this call will fail and return false.