Ejemplo n.º 1
0
 function execute($method)
 {
     parent::Execute($method);
     //Flush Output
     $this->headers->Output();
     ob_end_flush();
     //Remove from stack
     PH::Pop();
 }
Ejemplo n.º 2
0
 function execute($method = 'GET')
 {
     ob_start();
     parent::Execute($method);
     $data = ob_get_contents();
     ob_end_clean();
     //Pop off the stack
     PH::Pop();
     return $data;
 }