Example #1
0
 public static function send($sContent, $bEval = true)
 {
     self::$_sCurrentFileName = '';
     if ($bEval) {
         print Processor::evalString($sContent);
     } else {
         print $sContent;
     }
     self::$_bReadyToSend = true;
 }