mirror of
https://github.com/php/php-src.git
synced 2026-03-24 16:22:37 +01:00
This is a mix of more automated and manual migration. It should remove all applicable extension_loaded() checks outside of skipif.inc files.
11 lines
198 B
PHP
11 lines
198 B
PHP
--TEST--
|
|
Bug #25140 (mb_convert_encoding returns FALSE on an empty string)
|
|
--EXTENSIONS--
|
|
mbstring
|
|
--FILE--
|
|
<?php
|
|
var_dump( mb_convert_encoding( '', 'SJIS', 'EUC-JP' ) );
|
|
?>
|
|
--EXPECT--
|
|
string(0) ""
|