สร้าง text
ด้วย DOMDocument::createTextNode()
สร้าง text ด้วยฟังก์ชัน
createTextNode() ของคลาส DOMDocument
<?php
$doc = new DOMDocument('1.0');
$root = $doc->createElement('city');
$root = $doc->appendChild($root);
$text = $doc->createTextNode('New
York');
$text = $root->appendChild($text);
$doc->save("c:\\test.xml");
?>
จากตัวอย่าง เป็นการสร้าง
element หรือ tag ใน xml
tag ชื่อว่า city แล้วสร้าง text ข้อความว่า New York ใส่ใน tag city
ไฟล์ c:\test.xml จะเป็นดังนี้
<?xml version="1.0"?>
<city>New
York</city>