PHP Doku:: Creates a new DOMText object - domtext.construct.html

Verlauf / Chronik / History: (1) anzeigen

Sie sind hier:
Doku-Startseite ≥ PHP-Handbuch ≥ Funktionsreferenz ≥ XML-Manipulation ≥ Document Object Model ≥ The DOMText class ≥ DOMText::__construct

Ein Service von Reinhard Neidl - Webprogrammierung.

The DOMText class

<<The DOMText class

DOMText::isWhitespaceInElementContent>>

DOMText::__construct

(PHP 5)

DOMText::__construct — Creates a new DOMText object

Beschreibung

DOMText::__construct ([ string $value ] )

Creates a new DOMText object.

Parameter-Liste

value

The value of the text node. If not supplied an empty text node is created.

Beispiele

Beispiel #1 Creating a new DOMText

<?php

$dom 
= new DOMDocument('1.0', 'iso-8859-1');
$element = $dom->appendChild(new DOMElement('root'));
$text = $element->appendChild(new DOMText('root value'));
echo 
$dom->saveXML(); /* <?xml version="1.0" encoding="iso-8859-1"?><root>root value</root> */

?>

Siehe auch


Keine BenutzerBeiträge.
- Beiträge aktualisieren...



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",...)