Home :: International :: Manuals :: Howto :: FAQ :: Man Pages :: Email Login

 
 

 

DOMDocument->saveHTMLFile

(no version information, might be only in CVS)

DOMDocument->saveHTMLFile --  Dumps the internal document back into a file using HTML formatting

Description

string DOMDocument->saveHTMLFile ( string filename)

Creates an HTML document from the dom representation. This function usually is called after building a new dom document from scratch as in the example below.

Esempio 1. Creating a simple HTML document header

<?php
$doc
= new DOMDocument("1.0");
$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);
$doc->saveHTMLFile("/tmp/test.hmtl");
?>

See also DOMDocument->loadHTML(), DOMDocument->loadHTMLFile() and DOMDocument->saveHTML().

 
 
 
 
Google
  Web Linuxinfor   
 

Home :: Copyright :: Privacy :: Credits :: Get a free Linuxinfor Email Account

Document on this page is part of "Manuale PHP". See Index Page for more info about Authorship and Copyright.

1999-2009 Linuxinfor.com. No rights reserved.