mirror of
https://github.com/php/php-src.git
synced 2026-04-21 06:51:18 +02:00
16 lines
301 B
PHP
16 lines
301 B
PHP
--TEST--
|
|
Bug #77594 (ob_tidyhandler is never reset)
|
|
--DESCRIPTION--
|
|
Test is useful only with --repeat 2 (or more)
|
|
--SKIPIF--
|
|
<?php
|
|
if (!extension_loaded('tidy')) die('skip tidy extension not available');
|
|
?>
|
|
--FILE--
|
|
<?php
|
|
ob_start('ob_tidyhandler');
|
|
var_dump(ob_end_clean());
|
|
?>
|
|
--EXPECT--
|
|
bool(true)
|