This function has a bug on recursion detection.
https://bugs.php.net/bug.php?id=66964
(PHP 4 >= 4.0.6, PHP 5, PHP 7, PHP 8)
mb_convert_variables — 转换一个或多个变量的字符编码
$to_encoding
,$from_encoding
,&$var
,&...$vars
将变量 var
和 vars
的编码从 from_encoding
转换成编码 to_encoding
。
mb_convert_variables() 会拼接变量数组或对象中的字符串来检测编码,因为短字符串的检测往往会失败。因此,不能在一个数组或对象中混合使用编码。
成功时返回转换前的字符编码,失败时返回 false
。
示例 #1 mb_convert_variables() 示例
<?php
/* 转换变量 $post1、$post2 编码为内部(internal)编码 */
$interenc = mb_internal_encoding();
$inputenc = mb_convert_variables($interenc, "ASCII,UTF-8,SJIS-win", $post1, $post2);
?>
This function has a bug on recursion detection.
https://bugs.php.net/bug.php?id=66964
Last version of this function (php 5.6.27 and php7.0.12) have a bug
https://bugs.php.net/bug.php?id=73407