在 PHP 中建立文件的方法:使用 dom_create_document() 建立新 XML 文檔物件。使用 dom_create_element() 建立新 XML 元素物件。使用 dom_append_child() 將元素附加到文件中。使用 dom_create_text_node() 建立文字節點。使用 dom_append_child() 將文字節點附加到元素中。使用 saveXML() 儲存文件。
如何在PHP 中創建文檔
PHP 提供了各種函數來幫助創建文檔,這些函數易於使用且功能強大。
dom_create_document()
此函數會建立一個新的 XML 文件物件。
$doc = dom_create_document(null, null, null);
dom_create_element()
此函數建立一個新的 XML 元素物件。
$root = $doc->createElement('root');
dom_append_child()
此函數將一個 XML 元素附加到另一個 XML 元素。
$doc->appendChild($root);
dom_create_text_node()
#此函數建立一個新的 XML 文字節點。
$text = $doc->createTextNode('Hello, world!');
dom_append_child()
此函數將一個 XML 文字節點附加到一個 XML 元素。
$root->appendChild($text);
儲存文件
使用 saveXML()
方法將文件儲存到文件。
$doc->saveXML('document.xml');
實戰案例
以下程式碼建立一個名為document.xml
的XML 文檔,其中包含一個root
#元素和一個文字節點。
$doc = dom_create_document(null, null, null); $root = $doc->createElement('root'); $doc->appendChild($root); $text = $doc->createTextNode('Hello, world!'); $root->appendChild($text); $doc->saveXML('document.xml');
以上是PHP 函數如何建立文件?的詳細內容。更多資訊請關注PHP中文網其他相關文章!