mirror of
https://github.com/php/php-src.git
synced 2024-11-27 03:44:07 +08:00
7485978339
This is an automated migration of most SKIPIF extension_loaded checks.
14 lines
192 B
PHP
14 lines
192 B
PHP
--TEST--
|
|
Bug #60282 (Segfault when using ob_gzhandler() with open buffers)
|
|
--EXTENSIONS--
|
|
zlib
|
|
--FILE--
|
|
<?php
|
|
ob_start();
|
|
ob_start();
|
|
ob_start('ob_gzhandler');
|
|
echo "done";
|
|
?>
|
|
--EXPECT--
|
|
done
|