PHP

PHP jest obiektowym, skryptowym jezykiem programowania zaprojektowanym do tworzenia dynamicznych stron www.


Funkcje PHP

Oficjalna strona PHP

Dodatkowe aplikacje PHP

Dodatkowe modu³y PHP

Wortal PHP
Urząd skarbowy olsztyn - mieszkania Szczecin - ogrzewanie elektryczne - Prezenty gwiazdkowe - rent a car pyrzowice - wazne-dziela


DOMDocument->saveHTMLFile()

DOMDocument->saveHTMLFile()

(no version information, might be only in CVS)

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

Opis

class DOMDocument {

int saveHTMLFile ( string filename )

}

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

Parametry

filename

The path to the saved HTML document.

Zwracane wartości

Returns the number of bytes written or FALSE if an error occurred.

Przykłady

Przykład 1. Saving a HTML tree into a file

<?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

?>

Patrz także

DOMDocument->saveHTML()
DOMDocument->loadHTML()
DOMDocument->loadHTMLFile()

Zarabianie w internecie - Limo and Car services Airport chicago limo service 773-649-9630 - Firma Procreate oferuje skuteczne pozycjonowanie z gwarancja TOP10 - odzyskiwanie danych Gdynia - programy - opisygg - Najlepsze opisy gadu gadu do Twojego komunikatora - hosting tanie serwery na strony www - Nowe pokolenie serwisy internetowe do zarabiania. - pozycjonowanie strony - pogotowie komputerowe - darmowe forum - pozycjonowanie bielsko - Webcam kamerki internetowe online - partline

G:3,M:0,Y:2