芝麻web文件管理V1.00
编辑当前文件:/home/strato/chroot/opt/RZphp5/includes/PHP/Compat/Function/ob_get_flush.php
| // +----------------------------------------------------------------------+ // // $Id: ob_get_flush.php,v 1.6 2005/01/26 04:55:13 aidan Exp $ /** * Replace ob_get_flush() * * @category PHP * @package PHP_Compat * @link http://php.net/function.ob_get_flush * @author Aidan Lister
* @author Thiemo Mttig (http://maettig.com/) * @version $Revision: 1.6 $ * @since PHP 4.3.0 * @require PHP 4.0.0 (user_error) */ if (!function_exists('ob_get_flush')) { function ob_get_flush() { $contents = ob_get_contents(); if ($contents !== false) { ob_end_flush(); } return $contents; } } ?>