在 PHP 中,iconv_set_encoding()函数用于设置当前字符编码转换。它是 PHP 中的一个内置函数,它将 type 指定的内部配置变量的值更改为 encoding。
用法
string iconv_set_encoding(string $type, string $encoding)
参数
iconv_set_encoding()接受两个参数 − $type和$encoding。
$type −$type 参数可以是input_encoding,output_encoding或者internal_encoding。
$encoding −$encoding 参数用于字符集。
返回值
iconv_set_encoding()成功时返回 True,失败时返回 False。
示例
<pre>
<?php
// internal_encoding is string $type
//UTF-8 is string $charset
$bool = iconv_set_encoding ("internal_encoding","UTF-8");
// it will shows the new encoding
$mixed = iconv_get_encoding();
var_dump($mixed);
?>
</pre>
输出
array(3) { ["input_encoding"]=> string(5) "UTF-8" ["output_encoding"]=> string(5) "UTF-8" ["internal_encoding"]=> string(5) "UTF-8" }
相关用法
- PHP iconv_strlen()用法及代码示例
- PHP iconv_substr()用法及代码示例
- PHP iconv_mime_decode()用法及代码示例
- PHP iconv_mime_decode_headers()用法及代码示例
- PHP iconv_mime_encode()用法及代码示例
- PHP iconv_get_encoding()用法及代码示例
- PHP iconv()用法及代码示例
- PHP is_file( )用法及代码示例
- PHP imagegif()用法及代码示例
- PHP imageresolution()用法及代码示例
- PHP imagebmp()用法及代码示例
- PHP is_link( )用法及代码示例
- PHP imap_getsubscribed()用法及代码示例
- PHP is_link()用法及代码示例
- PHP imagearc()用法及代码示例
- PHP imageftbbox()用法及代码示例
- PHP idate()用法及代码示例
- PHP imagecreatefromgif()用法及代码示例
- PHP imagecreatefrombmp()用法及代码示例
- PHP imap_header()用法及代码示例
注:本文由纯净天空筛选整理自Urmila Samariya大神的英文原创作品 PHP – Set the current setting for character encoding conversion using iconv_set_encoding() function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。