iconv 字符串按要求的字符编码来转换
发表日期:2021-07-01 08:55:46 | 来源: | | 浏览(1215) 分类:iconv 函数
iconv
(PHP 4 >= 4.0.5, PHP 5, PHP 7, PHP 8)
iconv — 字符串按要求的字符编码来转换
说明
$in_charset
, string $out_charset
, string $str
): string
将字符串 str
从 in_charset
转换编码到 out_charset
。
参数
-
in_charset
-
输入的字符集。
-
out_charset
-
输出的字符集。
如果你在
out_charset
后添加了字符串//TRANSLIT
,将启用转写(transliteration)功能。这个意思是,当一个字符不能被目标字符集所表示时,它可以通过一个或多个形似的字符来近似表达。 如果你添加了字符串//IGNORE
,不能以目标字符集表达的字符将被默默丢弃。 否则,会导致一个E_NOTICE
并返回false
。警告//TRANSLIT
运行细节高度依赖于系统的 iconv() 实现(参见ICONV_IMPL
)。 据悉,某些系统上的实现会直接忽略//TRANSLIT
,所以转换也有可能失败,out_charset
会是不合格的。 -
str
-
要转换的字符串。
返回值
返回转换后的字符串, 或者在失败时返回 false
。
更新日志
版本 | 说明 |
---|---|
5.4.0 |
这个版本起,字符非法时候会返回 false ,除非在输出字符里指定了 //IGNORE 。
在之前版本,它会返回一部分字符串。
|
范例
示例 #1 iconv() 例子
<?php $text = "This is the Euro symbol '€'."; echo 'Original : ', $text, PHP_EOL; echo 'TRANSLIT : ', iconv("UTF-8", "ISO-8859-1//TRANSLIT", $text), PHP_EOL; echo 'IGNORE : ', iconv("UTF-8", "ISO-8859-1//IGNORE", $text), PHP_EOL; echo 'Plain : ', iconv("UTF-8", "ISO-8859-1", $text), PHP_EOL; ?>
以上例程的输出类似于:
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
- PHP(0)
- PHP杂项(34)
- PHP基础-李炎恢系列课程(20)
- 中文函数手册(0)
- 错误处理 函数(13)
- OPcache 函数(6)
- PHP 选项/信息 函数(54)
- Zip 函数(10)
- Hash 函数(15)
- OpenSSL 函数(63)
- Date/Time 函数(51)
- 目录函数(9)
- Fileinfo 函数(6)
- iconv 函数(11)
- iconv_get_encoding 获取 iconv 扩展的内部配置变量(0)
- iconv_mime_decode_headers 一次性解码多个 MIME 头字段(0)
- iconv_mime_decode 解码一个MIME头字段(0)
- iconv_mime_encode Composes a MIME header field(0)
- iconv_set_encoding 为字符编码转换设定当前设置(0)
- iconv_strlen 返回字符串的字符数统计(0)
- iconv_strpos Finds position of first occurrence of a needle within a haystack(0)
- iconv_strrpos Finds the last occurrence of a needle within a haystack(0)
- iconv_substr 截取字符串的部分(0)
- iconv 字符串按要求的字符编码来转换(0)
- ob_iconv_handler 以输出缓冲处理程序转换字符编码(0)
- 文件系统函数(81)
- 多字节字符串 函数(57)
- GD 和图像处理 函数(114)
- 可交换图像信息(5)
- Math 函数(50)
- 程序执行函数(11)
- PCNTL 函数(23)
- JSON 函数(4)
- SPL 函数(15)
- URL 函数(10)
- cURL 函数(32)
- 网络 函数(33)
- FTP 函数(36)
- Session 函数(23)
- PCRE 函数(11)
- PCRE 正则语法(19)
- 数组 函数(81)
- 类/对象 函数(18)
- 函数处理 函数(13)
- 变量处理 函数(37)
- SimpleXML 函数(3)
- 杂项 函数(31)
- 字符串 函数(101)