DOMDocument::saveHTMLFile
DOMDocument::saveHTMLFile
(PHP 5, PHP 7)
DOMDocument :: saveHTMLFile - 使用HTML格式将内部文档转储为文件
描述
public int DOMDocument::saveHTMLFile ( string $filename )
从DOM表示中创建一个HTML文档。这个函数通常在从头开始构建一个新的dom文档后调用,如下例所示。
参数
filename
保存的HTML文档的路径。
返回值
返回写入的字节数或FALSE
发生错误的次数。
例子
示例#1将HTML树保存到文件中
<?php
$doc = new DOMDocument('1.0'
// we want a nice output
$doc->formatOutput = true;
$root = $doc->createElement('html'
$root = $doc->appendChild($root
$head = $doc->createElement('head'
$head = $root->appendChild($head
$title = $doc->createElement('title'
$title = $head->appendChild($title
$text = $doc->createTextNode('This is the title'
$text = $title->appendChild($text
echo 'Wrote: ' . $doc->saveHTMLFile("/tmp/test.html") . ' bytes'; // Wrote: 129 bytes
?>