文章詳情頁
PHP擴展之XML操作(四)——XMLReader
瀏覽:24日期:2022-09-16 10:12:44
一、概述及安裝
The XMLReader extension is an XML Pull parser. The reader acts as a cursor going forward on the document stream and stopping at each node on the way.
It is important to note that internally, libxml uses the UTF-8 encoding and as such, the encoding of the retrieved contents will always be in UTF-8 encoding.
此擴展需要?libxml?PHP 擴展。這表示需要使用?--enable-libxml?,盡管這將隱式完成因為 libxml 是缺省開啟的。
The XMLReader extension was initially a PECL extension for PHP 5. It was later moved to the PHP source (bundled) as of PHP 5.1.0, and later enabled by default as of PHP 5.1.2.
此擴展默認為啟用,編譯時可通過下列選項禁用:?--disable-xmlreader
二、XMLReader類及其成員函數XMLReader::close?— Close the XMLReader inputXMLReader::expand?— Returns a copy of the current node as a DOM objectXMLReader::getAttribute?— Get the value of a named attributeXMLReader::getAttributeNo?— Get the value of an attribute by indexXMLReader::getAttributeNs?— Get the value of an attribute by localname and URIXMLReader::getParserProperty?— Indicates if specified property has been setXMLReader::isValid?— Indicates if the parsed document is validXMLReader::lookupNamespace?— Lookup namespace for a prefixXMLReader::moveToAttribute?— Move cursor to a named attributeXMLReader::moveToAttributeNo?— Move cursor to an attribute by indexXMLReader::moveToAttributeNs?— Move cursor to a named attributeXMLReader::moveToElement?— Position cursor on the parent Element of current AttributeXMLReader::moveToFirstAttribute?— Position cursor on the first AttributeXMLReader::moveToNextAttribute?— Position cursor on the next AttributeXMLReader::next?— Move cursor to next node skipping all subtreesXMLReader::open?— Set the URI containing the XML to parseXMLReader::read?— Move to next node in documentXMLReader::readInnerXML?— Retrieve XML from current nodeXMLReader::readOuterXML?— Retrieve XML from current node, including it selfXMLReader::readString?— Reads the contents of the current node as a stringXMLReader::setParserProperty?— Set parser optionsXMLReader::setRelaxNGSchema?— Set the filename or URI for a RelaxNG SchemaXMLReader::setRelaxNGSchemaSource?— Set the data containing a RelaxNG SchemaXMLReader::setSchema?— Validate document against XSDXMLReader::XML?— Set the data containing the XML to parse 標簽:
PHP
相關文章:
1. 一篇文章帶你了解JavaScript-對象2. Java構建JDBC應用程序的實例操作3. javascript設計模式 ? 建造者模式原理與應用實例分析4. Python使用oslo.vmware管理ESXI虛擬機的示例參考5. Express 框架中使用 EJS 模板引擎并結合 silly-datetime 庫進行日期格式化的實現方法6. IntelliJ IDEA設置條件斷點的方法步驟7. Spring應用拋出NoUniqueBeanDefinitionException異常的解決方案8. ThinkPHP5 通過ajax插入圖片并實時顯示(完整代碼)9. Ajax引擎 ajax請求步驟詳細代碼10. Jsp中request的3個基礎實踐
排行榜
