PHP Doku:: Kompletten Kommentar schreiben - function.xmlwriter-write-comment.html

Verlauf / Chronik / History: (1) anzeigen

Sie sind hier:
Doku-StartseitePHP-HandbuchFunktionsreferenzXML-ManipulationXMLWriterXMLWriter FunktionenXMLWriter->writeComment

Ein Service von Reinhard Neidl - Webprogrammierung.

XMLWriter Funktionen

<<XMLWriter->writeCData

XMLWriter->writeDTDAttlist>>

XMLWriter->writeComment

(PHP 5 >= 5.1.2, PECL xmlwriter >= 0.1.0)

XMLWriter->writeCommentKompletten Kommentar schreiben

Beschreibung

Objektorientiert:

bool XMLWriter::writeComment ( string $content )

Prozedural:

bool xmlwriter_write_comment ( resource $xmlwriter , string $content )

Schreibt einen vollständigen Kommentar.

Parameter-Liste

xmlwriter

Nur für prozedurale Aufrufe. Die XMLWriter-resource, die bearbeitet werden soll. Diese Ressource wird von Aufrufen von xmlwriter_open_uri() oder xmlwriter_open_memory() geliefert.

content

Inhalt des Kommentars.

Rückgabewerte

Gibt bei Erfolg TRUE zurück. Im Fehlerfall wird FALSE zurückgegeben.


Ein BenutzerBeitrag:
- Beiträge aktualisieren...
thewrs at gmail dot com
5.12.2007 23:37
This will write a XML <!----> style comment to your XMLWriter resource.

Strings up to 50 characters long are displayed on a single line with no spacing between the tags.

Anything above 50 characters will show on multiple formatted lines. Using the \n metacharater inserts a newline and maintains indenting.



PHP Powered Diese Seite bei php.net
The PHP manual text and comments are covered by the Creative Commons Attribution 3.0 License © the PHP Documentation Group - Impressum - mail("TO:Reinhard Neidl",...)