PHP擴展之XML操作(五)——XMLWriter
This is the XMLWriter extension. It wraps the libxml xmlWriter API.
This extension represents a writer that provides a non-cached, forward-only means of generating streams or files containing XML data.
This extension can be used in an object oriented style or a procedural one. Every method documented describes the alternative procedural call.
此擴展需要?libxml?PHP 擴展。這表示需要使用?--enable-libxml?,盡管這將隱式完成因為 libxml 是缺省開啟的。
The XMLWriter extension was initially a PECL extension for PHP 5. It was later added to the PHP source (bundled) as of PHP 5.1.2. This extension is enabled by default.
此擴展默認為啟用,編譯時可通過下列選項禁用:?--disable-xmlwriter
二、XMLWriter類及其成員函數(shù)XMLWriter::endAttribute?— End attributeXMLWriter::endCData?— End current CDATAXMLWriter::endComment?— Create end commentXMLWriter::endDocument?— End current documentXMLWriter::endDTDAttlist?— End current DTD AttListXMLWriter::endDTDElement?— End current DTD elementXMLWriter::endDTDEntity?— End current DTD EntityXMLWriter::endDTD?— End current DTDXMLWriter::endElement?— End current elementXMLWriter::endPI?— End current PIXMLWriter::flush?— Flush current bufferXMLWriter::fullEndElement?— End current elementXMLWriter::openMemory?— Create new xmlwriter using memory for string outputXMLWriter::openURI?— Create new xmlwriter using source uri for outputXMLWriter::outputMemory?— Returns current bufferXMLWriter::setIndentString?— Set string used for indentingXMLWriter::setIndent?— Toggle indentation on/offXMLWriter::startAttributeNS?— Create start namespaced attributeXMLWriter::startAttribute?— Create start attributeXMLWriter::startCData?— Create start CDATA tagXMLWriter::startComment?— Create start commentXMLWriter::startDocument?— Create document tagXMLWriter::startDTDAttlist?— Create start DTD AttListXMLWriter::startDTDElement?— Create start DTD elementXMLWriter::startDTDEntity?— Create start DTD EntityXMLWriter::startDTD?— Create start DTD tagXMLWriter::startElementNS?— Create start namespaced element tagXMLWriter::startElement?— Create start element tagXMLWriter::startPI?— Create start PI tagXMLWriter::text?— Write textXMLWriter::writeAttributeNS?— Write full namespaced attributeXMLWriter::writeAttribute?— Write full attributeXMLWriter::writeCData?— Write full CDATA tagXMLWriter::writeComment?— Write full comment tagXMLWriter::writeDTDAttlist?— Write full DTD AttList tagXMLWriter::writeDTDElement?— Write full DTD element tagXMLWriter::writeDTDEntity?— Write full DTD Entity tagXMLWriter::writeDTD?— Write full DTD tagXMLWriter::writeElementNS?— Write full namespaced element tagXMLWriter::writeElement?— Write full element tagXMLWriter::writePI?— Writes a PIXMLWriter::writeRaw?— Write a raw XML text相關文章:
1. js select支持手動輸入功能實現(xiàn)代碼2. php redis setnx分布式鎖簡單原理解析3. vue使用moment如何將時間戳轉為標準日期時間格式4. PHP正則表達式函數(shù)preg_replace用法實例分析5. Android 實現(xiàn)徹底退出自己APP 并殺掉所有相關的進程6. 什么是Python變量作用域7. Android Studio3.6.+ 插件搜索不到終極解決方案(圖文詳解)8. bootstrap select2 動態(tài)從后臺Ajax動態(tài)獲取數(shù)據(jù)的代碼9. 如何在PHP中讀寫文件10. Android studio 解決logcat無過濾工具欄的操作
