コード例 #1
0
ファイル: Field.php プロジェクト: laiello/oops-project
 public function __toString()
 {
     try {
         return $this->getHtml();
     } catch (Exception $e) {
         Oops_Debug::Dump($e, 'exception', true);
         return '';
     }
 }
コード例 #2
0
ファイル: Debug.php プロジェクト: laiello/oops-project
 function Out()
 {
     ob_start();
     Oops_Debug::Dump($this->_in);
     return ob_get_clean();
 }