示例#1
0
 public function __toString()
 {
     try {
         return $this->getHtml();
     } catch (Exception $e) {
         Oops_Debug::Dump($e, 'exception', true);
         return '';
     }
 }
示例#2
0
 function Out()
 {
     ob_start();
     Oops_Debug::Dump($this->_in);
     return ob_get_clean();
 }