コード例 #1
0
ファイル: Horde.php プロジェクト: jubinpatel/horde
 /**
  * Start buffering output.
  */
 public static function startBuffer()
 {
     if (!self::$_bufferLevel) {
         self::$_contentSent = self::contentSent();
     }
     ++self::$_bufferLevel;
     ob_start();
 }