您好,登錄后才能下訂單哦!
如何正確使用PHP DOM-XML創建XML文件,針對這個問題,這篇文章詳細介紹了相對應的分析和解答,希望可以幫助更多想解決這個問題的小伙伴找到更簡單易行的方法。
我們在創建XML文件并對其進行解析時,通常都會用到PHP DOM-XML。那么如何才能正確的使用它來實現這一功能呢?下面我們就來仔細看下它的應用方法。
PHP DOM-XML的應用代碼示例:
< ?php
/**
* Topic: Create and parse XML files using PHP DOM-XML
* Source:http://www.php.net/domxml
* Reference: http://www.zugeschaut-und-mitgebaut.de/php/extension.domxml.html
* Author:urs@circle.ch, 16-1-2001
*
*/
// 使用PHP DOM-XML創建和解析XML文件
//創建XML文檔對象;以后的處理過程將在此基礎上進行
$doc = new_xmldoc("1.0" );
//創建根節點,并設置一個屬性
$root = $doc->add_root("faq" );
$root->setattr("page", "32" );
//子節點
$one = $root->new_child("question", "");
//為子節點設置屬性
$one->setattr("number", "1");
//question也創建子節點,并且給它賦值
$one->new_child("text", "1. Where to get libxml-2.0.0?");
$one->new_child("answer", "You can download the latest
release of libxml either as a source archive or
RPM package from http://www.xmlsoft.org.
The current version is libxml2-2.2.1." );
$two = $root->new_child("question", "" );
$two->setattr("number", "2");
$two->new_child("text", "2. How to configure PHP4?" );
// 創建一個不直接賦值的節點
$twoone = $two->new_child("answer", "");
// 然后給它單獨賦值
$twoone->set_content("DIR is the libxml install directory
(if you just use --with-dom it defaults
to /usr), I needed to use --with-dom=/usr/local" );
$three = $root->new_child("question", "" );
$three->setattr("number", "7" );
$three->new_child("text", "7. How to use DOM XML function ?" );
$three->new_child("answer", "Read this document source for
a simple example." );
//輸出到Browser
print("< pre>".htmlspecialchars($doc->dumpmem() )."< /pre>" );
// write to file
//寫回到文件
$fp = fopen("test_dom.xml", "w+" );
fwrite($fp, $doc->dumpmem(), strlen($doc->dumpmem() ));
fclose($fp);
//現在使用xpath從XML文檔中得到內容
$doc = xmldoc(join("", file("test_dom.xml")) );
$ctx = xpath_new_context($doc );
//所有對象
$foo = xpath_eval($ctx, "//child::*");
print_r($foo);
print("< br/>< br/>");
//text node 對象
$foo = xpath_eval($ctx, "//text");
print_r($foo);
print("< br/>< br/>");
// ***個text node對象
$foo = xpath_eval($ctx, "//text[1]");
print_r($foo);
print("< br/>< br/>");
// 第二個text node對象
$foo = xpath_eval($ctx, "//text[2]");
print_r($foo);
print("< br/>< br/>");
// 第三個answer對象
$foo = xpath_eval($ctx, "//answer[3]");
print_r($foo);
print("< br/>< br/>");
//第三個text node的類型,名稱和內容
$foo = xpath_eval($ctx, "//text[3]");
$tmp = $foo->nodeset;
print_r($tmp);
print("< br/>");
print($tmp[0]->type) . "; ";
print($tmp[0]->name) . "; ";
print($tmp[0]->content);
?>
需要說明,PHP DOM-XML只能在PHPPHP4.0.x + linux上運行
關于如何正確使用PHP DOM-XML創建XML文件問題的解答就分享到這里了,希望以上內容可以對大家有一定的幫助,如果你還有很多疑惑沒有解開,可以關注億速云行業資訊頻道了解更多相關知識。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。