php-src/tests/output/bug46900.phpt
2008-12-28 19:50:58 +00:00

16 lines
264 B
PHP

--TEST--
Bug #46900 (Unexpected behaviour in HEAD when output buffer callback returns null)
--FILE--
<?php
function return_null($string) {
return null;
}
ob_start('return_null');
echo "You shouldn't see this.\n";
ob_end_flush();
echo 'done';
?>
--EXPECTF--
done