一、概述及安装

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 input

  • XMLReader::expand — Returns a copy of the current node as a DOM object

  • XMLReader::getAttribute — Get the value of a named attribute

  • XMLReader::getAttributeNo — Get the value of an attribute by index

  • XMLReader::getAttributeNs — Get the value of an attribute by localname and URI

  • XMLReader::getParserProperty — Indicates if specified property has been set

  • XMLReader::isValid — Indicates if the parsed document is valid

  • XMLReader::lookupNamespace — Lookup namespace for a prefix

  • XMLReader::moveToAttribute — Move cursor to a named attribute

  • XMLReader::moveToAttributeNo — Move cursor to an attribute by index

  • XMLReader::moveToAttributeNs — Move cursor to a named attribute

  • XMLReader::moveToElement — Position cursor on the parent Element of current Attribute

  • XMLReader::moveToFirstAttribute — Position cursor on the first Attribute

  • XMLReader::moveToNextAttribute — Position cursor on the next Attribute

  • XMLReader::next — Move cursor to next node skipping all subtrees

  • XMLReader::open — Set the URI containing the XML to parse

  • XMLReader::read — Move to next node in document

  • XMLReader::readInnerXML — Retrieve XML from current node

  • XMLReader::readOuterXML — Retrieve XML from current node, including it self

  • XMLReader::readString — Reads the contents of the current node as a string

  • XMLReader::setParserProperty — Set parser options

  • XMLReader::setRelaxNGSchema — Set the filename or URI for a RelaxNG Schema

  • XMLReader::setRelaxNGSchemaSource — Set the data containing a RelaxNG Schema

  • XMLReader::setSchema — Validate document against XSD

  • XMLReader::XML — Set the data containing the XML to parse

以上就是PHP扩展之XML操作(四)——XMLReader的内容,更多相关内容请关注PHP中文网(www.php.cn)!

声明:本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn核实处理。

  • 相关标签:PHP扩展 XML操作 XMLReader
  • 程序员必备接口测试调试工具:点击使用

    Apipost = Postman + Swagger + Mock + Jmeter

    Api设计、调试、文档、自动化测试工具

    网页生成APP,用做网站的技术去做APP:立即创建

    手机网站开发APP、自助封装APP、200+原生模块、2000+映射JS接口按需打包

    • 上一篇:PHP扩展之XML操作(三)——XML解析器使用及相关函数
    • 下一篇:PHP扩展之XML操作(五)——XMLWriter

    相关文章

    相关视频


    • 使用xmlhttp为网站增加域名查询功能的示例代码...
    • 四种XML解析方式详解
    • 基于PHP对XML的操作详解
    • XML和Tomcat的入门知识的详细介绍
    • PHP扩展之XML操作(四)——XMLReader

      视频教程分类

      • php视频教程
      • html视频教程
      • css视频教程
      • JS视频教程
      • jQuery视频教程
      • mysql视频教程
      • Linux视频教程
      • Python视频教程
      • Laravel视频教程
      • Vue视频教程

      专题

      PHP扩展之XML操作(四)——XMLReader