Exemplo n.º 1
0
 static function ini_set_auto_flush($autoFlush)
 {
     if ('off' === strtolower($autoFlush)) {
         $autoFlush = false;
     } else {
         $autoFlush = (bool) $autoFlush;
     }
     self::$autoFlush = $autoFlush;
 }