mirror of
https://github.com/php/php-src.git
synced 2026-04-24 00:18:23 +02:00
d8ef868b92
This has been the case at least since PHP 5.4. Thanks to Girgias for pointing it out. It appears that there are several global variables internal to mbstring which can be queried via mb_get_info() and which could be NULL, but at the very least, we know that "mbstring.http_input" is one of them.
11 lines
146 B
PHP
11 lines
146 B
PHP
--TEST--
|
|
mb_get_info("http_input") can return null
|
|
--EXTENSIONS--
|
|
mbstring
|
|
--FILE--
|
|
<?php
|
|
var_dump(mb_get_info("http_input"));
|
|
?>
|
|
--EXPECT--
|
|
NULL
|