format() 공개 메소드

Formats HTML/Javascript
또한 보기: format_html()
public format ( &$node )
예제 #1
0
파일: ganon.php 프로젝트: tburry/pquery
/**
 * Format/beautify DOM
 * @param DomNode $root
 * @param array $options Extra formatting options {@link Formatter::$options}
 * @return bool
 */
function dom_format(&$root, $options = array())
{
    $formatter = new HtmlFormatter($options);
    return $formatter->format($root);
}