欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

PHP使用xmllint命令处理xml与html的方法

程序员文章站 2023-09-28 16:28:36
本文实例讲述了php使用xmllint命令处理xml与html的方法。分享给大家供大家参考。具体分析如下: xmllint是一个很方便的处理及验证xml、处理html的工...

本文实例讲述了php使用xmllint命令处理xml与html的方法。分享给大家供大家参考。具体分析如下:

xmllint是一个很方便的处理及验证xml、处理html的工具,linux下只要安装libxml2就可以使用这个命令。首先看下其结合--html 、--xpath参数处理html时的例子:

示例如下:

复制代码 代码如下:
curl //www.jb51.net /ip/?q=8.8.8.8 2>/dev/null | xmllint --html --xpath "//ul[@id='csstb']" - 2>/dev/null | sed -e 's/<[^>]*>//g'

上例中主要是通过在123cha上查询的ip地址的归属情况后,通过提取结果(ul#csstb),只获取文本部分的内容。上面的脚本语句执行后的结果如下:

[您的查询]:8.8.8.8
本站主数据:
美国
本站辅数据:google public dns提供:hypo
美国 google免费的google public dns提供:zwstar参考数据一:美国
参考数据二:美国

下面再结合示例看下其他主要参数的用法。
1、 --format
此参数用于格式化xml,使其具有良好的可读性。
假设有xml(person.xml)内容如下:

复制代码 代码如下:
<person><name>ball</name><age>30</age<sex>male</sex></person>

执行如下操作后其输出为更易读的xml格式:

复制代码 代码如下:
#xmllint --format person.xml
<?xml version="1.0"?>
    <person>
      <name>ball</name>
      <age>30</age>
      <sex>male</sex>
    </person>

2、 --noblanks
与--format相反,有时为了节省传输量,我们希望去掉xml中的空白,这时我们可以使用--noblanks命令。
假设xml(person.xml)内容如下
复制代码 代码如下:
<?xml version="1.0"?>
    <person>
      <name>ball</name>
      <age>30</age>
      <sex>male</sex>
    </person>

执行该参数操作后,其输出结果为:

复制代码 代码如下:
#xmllint --noblanks person.xml
<?xml version="1.0"?>
    <person><name>ball</name><age>30</age><sex>male</sex></person>

3、--schema
使用scheam验证xml文件的正确性(xml schema 是基于 xml 的 dtd 替代者)
假设有xml文件(person.xml)和scheam文件(person.xsd)文件,内容分别如下
person.xml
复制代码 代码如下:
<?xml version="1.0"?>
    <person>
      <name>ball</name>
      <age>30</age>
      <sex>male</sex>
    </person>

person.xsd
复制代码 代码如下:
<?xml version="1.0"?>
    <xs:schema xmlns:xs="http://www.w3.org/2001/xmlschema">
      <xs:element name="name" type="xs:string"/>
      <xs:element name="age" type="xs:integer"/>
      <xs:element name="sex">
        <xs:simpletype>
          <xs:restriction base="xs:string">
            <xs:enumeration value="male"/>
            <xs:enumeration value="female"/>
          </xs:restriction>
        </xs:simpletype>
      </xs:element>
      <xs:element name="person">
        <xs:complextype>
          <xs:all>
            <xs:element ref="name"/>
            <xs:element ref="age"/>
            <xs:element ref="sex"/>
          </xs:all>
        </xs:complextype>
      </xs:element>
    </xs:schema>

按如下命令执行后的结果是:

复制代码 代码如下:
#xmllint --schema person.xsd person.xml
<?xml version="1.0"?>
    <person>
      <name>ball</name>
      <age>30</age>
      <sex>male</sex>
    </person>

person.xml validates 
注:默认情况下,验证后会输出验证的文件内容,可以使用 --noout选项去掉此输出,这样我们可以只得到最后的验证结果。

复制代码 代码如下:
#xmllint --noout --schema person.xsd person.xml

person.xml validates 
下面我们改动person.xml,使这份文件age字段和sex都是不符合xsd定义的。
复制代码 代码如下:
#xmllint --noout --schema person.xsd person.xml
person.xml:4: element age: schemas validity error : element 'age': 'not age' is not a valid value of the atomic type 'xs:integer'.
person.xml:5: element sex: schemas validity error : element 'sex': [facet 'enumeration'] the value 'test' is not an element of the set {'male', 'female'}.
person.xml:5: element sex: schemas validity error : element 'sex': 'test' is not a valid value of the local atomic type.
person.xml fails to validate

可以看到xmllint成功的报出了错误!

4、 关于--schema的输出

在讲输出之前先看下面一个场景,假如你想通过php执行xmllint然后拿到返回结果,你的代码通常应该是这个样子valid.php

复制代码 代码如下:
<?php
$command = "xmllint --noout --schema person.xsd person.xml";
exec($command, $output, $retval);
//出错时返回值不为0
if ($retval != 0){
    var_dump($output);
}
else{
    echo "yeah!";
}

我们保持上文中person.xml的错误。

执行此代码,你会发现,你拿到的output不是错误,而是array(0) {}, amazing!
为什么会这样呢?

因为xmllint --schema,如果验证出错误,错误信息并不是通过标准输出(stdout)显示的,而是通过标准错误(stderr)进行显示的。

而exec的output参数拿到的,只能是标准输出(stdout)显示的内容。
所以,为了拿到出错信息,我们需要将标准错误重定向到标准输出,对应修改代码:

复制代码 代码如下:
$command = "xmllint --noout --schema person.xsd person.xml 2>$1";

再次执行valid.php,错误信息顺利拿到!

例子如下:
首先建立一份 xml 文档,命名为 po.xml,其内容如下:

复制代码 代码如下:
<?xml version="1.0"?>
<purchaseorder orderdate="1999-10-20">
    <shipto country="us">
        <name>alice smith</name>
        <street>123 maple street</street>
        <city>mill valley</city>
        <state>ca</state>
        <zip>90952</zip>
    </shipto>
    <billto country="us">
        <name>robert smith</name>
        <street>8 oak avenue</street>
        <city>old town</city>
        <state>pa</state>
        <zip>95819</zip>
    </billto>
    <comment>hurry, my lawn is going wild!</comment>
    <items>
        <item partnum="872-aa">
            <productname>lawnmower</productname>
            <quantity>1</quantity>
            <usprice>148.95</usprice>
            <comment>confirm this is electric</comment>
        </item>
        <item partnum="926-aa">
            <productname>baby monitor</productname>
            <quantity>1</quantity>
            <usprice>39.98</usprice>
            <shipdate>1999-05-21</shipdate>
        </item>
    </items>
</purchaseorder>

然后为 po.xml 写的 schema 文件,取名为 po.xsd,内容如下:
复制代码 代码如下:
<xsd:schema xmlns:xsd="http://www.w3.org/2001/xmlschema">
 <xsd:annotation>
  <xsd:documentation xml:lang="en">
   purchase order schema for example.com.
   copyright 2000 example.com. all rights reserved.
  </xsd:documentation>
 </xsd:annotation>
 <xsd:element name="purchaseorder" type="purchaseordertype"/>
 <xsd:element name="comment" type="xsd:string"/>
 <xsd:complextype name="purchaseordertype">
  <xsd:sequence>
   <xsd:element name="shipto" type="usaddress"/>
   <xsd:element name="billto" type="usaddress"/>
   <xsd:element ref="comment" minoccurs="0"/>
   <xsd:element name="items"  type="items"/>
  </xsd:sequence>
  <xsd:attribute name="orderdate" type="xsd:date"/>
 </xsd:complextype>
 <xsd:complextype name="usaddress">
  <xsd:sequence>
   <xsd:element name="name"   type="xsd:string"/>
   <xsd:element name="street" type="xsd:string"/>
   <xsd:element name="city"   type="xsd:string"/>
   <xsd:element name="state"  type="xsd:string"/>
   <xsd:element name="zip"    type="xsd:decimal"/>
  </xsd:sequence>
  <xsd:attribute name="country" type="xsd:nmtoken" fixed="us"/>www.jb51.net
 </xsd:complextype>
 <xsd:complextype name="items">
  <xsd:sequence>
   <xsd:element name="item" minoccurs="0" maxoccurs="unbounded">
    <xsd:complextype>
     <xsd:sequence>
      <xsd:element name="productname" type="xsd:string"/>
      <xsd:element name="quantity">
       <xsd:simpletype>
        <xsd:restriction base="xsd:positiveinteger">
         <xsd:maxexclusive value="100"/>
        </xsd:restriction>
       </xsd:simpletype>
      </xsd:element>
      <xsd:element name="usprice"  type="xsd:decimal"/>
      <xsd:element ref="comment"   minoccurs="0"/>
      <xsd:element name="shipdate" type="xsd:date" minoccurs="0"/>
     </xsd:sequence>
     <xsd:attribute name="partnum" type="sku" use="required"/>
    </xsd:complextype>
   </xsd:element>
  </xsd:sequence>
 </xsd:complextype>
 <!-- stock keeping unit, a code for identifying products -->
 <xsd:simpletype name="sku">
  <xsd:restriction base="xsd:string">
   <xsd:pattern value="d{3}-[a-z]{2}"/>
  </xsd:restriction>
 </xsd:simpletype>
</xsd:schema>

使用 xmllint 对 po.xml 文件进行校验:
复制代码 代码如下:
$ xmllint   -schema po.xsd po.xml
如果无出错信息,就说明校验通过了。

希望本文所述对大家的php程序设计有所帮助。