php-src/tests/output/gh14808.phpt
Calvin Buckley 43e3f577b9 Declare that this test needs iconv extension
Otherwise it would fail with the usual recommended ./configure
invocation used for RMs testing (i.e. --disable-all).
2024-07-08 18:37:52 -03:00

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) ""