Searched refs:mb_convert_variables (Results 1 – 9 of 9) sorted by relevance
/php-src/ext/mbstring/tests/ |
H A D | bug66964.phpt | 2 Bug #66964 (mb_convert_variables() cannot detect recursion) 8 var_dump(mb_convert_variables('utf-8', 'auto', $a)); 9 var_dump(mb_convert_variables('utf-8', 'utf-8', $a)); 16 var_dump(mb_convert_variables('utf-8', 'utf-8', $a), $a); 19 var_dump(mb_convert_variables('utf-8', 'utf-8', $a), $a); 23 Warning: mb_convert_variables(): %s on line %d 26 Warning: mb_convert_variables(): %s on line %d 40 Warning: mb_convert_variables(): %s on line %d
|
H A D | mb_convert_variables_empty_encoding_list.phpt | 2 Test mb_convert_variables() function : empty encoding list 11 var_dump( mb_convert_variables('UTF-8', '', $string)); 16 var_dump( mb_convert_variables('UTF-8', [], $string)); 23 mb_convert_variables(): Argument #2 ($from_encoding) must specify at least one encoding 24 mb_convert_variables(): Argument #2 ($from_encoding) must specify at least one encoding
|
H A D | bug26639.phpt | 2 Bug #26639 (mb_convert_variables() clutters variables beyond the references) 9 mb_convert_variables("EUC-JP", "Shift_JIS", $b); 17 mb_convert_variables("EUC-JP", "Shift_JIS", $b); 26 mb_convert_variables("EUC-JP", "Shift_JIS", $c); 36 mb_convert_variables("EUC-JP", "Shift_JIS", $c); 46 mb_convert_variables("EUC-JP", "Shift_JIS", $c); 56 mb_convert_variables("EUC-JP", "Shift_JIS", $c); 66 mb_convert_variables("EUC-JP", "Shift_JIS", $c);
|
H A D | mb_convert_variables.phpt | 2 mb_convert_variables() 25 $encoding = mb_convert_variables('EUC-JP', 'SJIS', $s); 30 $encoding = mb_convert_variables('EUC-JP', 'JIS', $s); 35 $encoding = mb_convert_variables('SJIS', 'EUC-JP', $s); 40 $encoding = mb_convert_variables('JIS', 'EUC-JP', $s); 56 $encoding = mb_convert_variables('EUC-JP', 'auto', $aa); 62 $encoding = mb_convert_variables('EUC-JP', 'auto', $aa); 102 $encoding = mb_convert_variables('EUC-JP', 'auto', $oo); 108 $encoding = mb_convert_variables('EUC-JP', 'auto', $oo); 153 mb_convert_variables('UTF-16LE', 'UTF-8', $nested); [all …]
|
H A D | gh16261.phpt | 2 GH-16261 (Reference invariant broken in mb_convert_variables()) 18 mb_convert_variables("EUC-JP", "Shift_JIS", $test); 25 mb_convert_variables("EUC-JP", "Shift_JIS", $test->x);
|
H A D | mb_convert_encoding_failed_detection.phpt | 13 var_dump(mb_convert_variables("ASCII", ["UTF-8", "UTF-16"], $str)); 21 Warning: mb_convert_variables(): Unable to detect encoding in %s on line %d
|
/php-src/ext/mbstring/ |
H A D | mbstring_arginfo.h | 336 ZEND_FUNCTION(mb_convert_variables); 405 ZEND_FE(mb_convert_variables, arginfo_mb_convert_variables)
|
H A D | mbstring.stub.php | 172 function mb_convert_variables(string $to_encoding, array|string $from_encoding, mixed &$var, mixed … function
|
H A D | mbstring.c | 3816 PHP_FUNCTION(mb_convert_variables) in PHP_FUNCTION() argument
|
Completed in 30 milliseconds