mirror of
https://github.com/php/php-src.git
synced 2026-03-24 08:12:21 +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.
17 lines
326 B
PHP
17 lines
326 B
PHP
--TEST--
|
|
Bug #45239 (encoding detector hangs with mbstring.strict_detection enabled)
|
|
--INI--
|
|
mbstring.strict_detection=1
|
|
input_encoding=UTF-8
|
|
internal_encoding=UTF-8
|
|
--EXTENSIONS--
|
|
mbstring
|
|
--FILE--
|
|
<?php
|
|
mb_internal_encoding("utf-8");
|
|
mb_parse_str("a=%fc", $dummy);
|
|
var_dump(mb_http_input());
|
|
?>
|
|
--EXPECT--
|
|
string(5) "UTF-8"
|