示例#1
0
文件: Dom.php 项目: talesoft/tale-dom
 public static function fromFile($path, $encoding = null, $html = false)
 {
     if ($html) {
         return HtmlElement::fromFile($path, $encoding);
     }
     return Element::fromFile($path, $encoding);
 }