コード例 #1
0
ファイル: PageRequest.php プロジェクト: splitice/radical-web
 function execute($method)
 {
     parent::Execute($method);
     //Flush Output
     $this->headers->Output();
     ob_end_flush();
     //Remove from stack
     PH::Pop();
 }
コード例 #2
0
ファイル: SubRequest.php プロジェクト: splitice/radical-web
 function execute($method = 'GET')
 {
     ob_start();
     parent::Execute($method);
     $data = ob_get_contents();
     ob_end_clean();
     //Pop off the stack
     PH::Pop();
     return $data;
 }