コード例 #1
0
ファイル: RtfGroup.php プロジェクト: PhenX/PhpRtfToHtml
 /**
  * (non-PHPdoc)
  * @see RtfElement::free()
  */
 public function free()
 {
     foreach ($this->children as $child) {
         $child->free();
     }
     parent::free();
 }