mirror of
https://github.com/php/php-src.git
synced 2024-11-27 03:44:07 +08:00
43e3f577b9
Otherwise it would fail with the usual recommended ./configure invocation used for RMs testing (i.e. --disable-all).
16 lines
299 B
PHP
16 lines
299 B
PHP
--TEST--
|
|
GH-14808 (Unexpected null pointer in Zend/zend_string.h with empty output buffer)
|
|
--EXTENSIONS--
|
|
iconv
|
|
--FILE--
|
|
<?php
|
|
var_dump($args);
|
|
ob_start('ob_iconv_handler');
|
|
ob_clean();
|
|
var_dump(ob_get_contents());
|
|
?>
|
|
--EXPECTF--
|
|
Warning: Undefined variable $args in %s on line %d
|
|
NULL
|
|
string(0) ""
|