-1
                    <div id="dump-list">    
<div class="dump-row"> 
 <div class="dump-location odd" data-jmapping="{id: 35, point: {lng: -73.00898601, lat: 41.71727402}, category: 'office'}">

    <div class="SingleLinkNoTx">
    <a href="#10" class="loc-link">Acme Software</a><br/><strong>John Doe, MBA</strong><br/>123 Main St.<br />New York, NY 10036<br /><strong class="telephone">(212) 555-1234</strong><br/>
    </div><!-- END.SingleLinkNoTx -->

    <a href="http://www.example.com" target="_blank" class="web_link">Visit Website</a><span><br />(0.3 miles)</span>   
    <div class="loc-info">
             <div class="loc-info-text ">
        John Doe, MBA<br /><a href="http://maps.google.com/?daddr=41.71727402,-73.00898601" target="_blank">Get Directions &raquo;</a>    
         </div>

    </div>

</div>

上面的 HTML 是如何在 PHP 中解析出来的,以便使用 xpath 可以将公司名称、人名(John Doe,MBA)、地址、城市、州邮政编码等非类字段分离到自己的变量中?谢谢!

4

1 回答 1

2

包括以下内容:

$xpath->evaluate('//a[@class="loc-link"]//text()');

$xpath是包含所有 dom 信息的 xpath 对象,您可以在此处阅读有关它的更多信息。评估函数返回所请求表达式的内容。

该表达式//a[@class="loc-link"]//text()告诉 xpath 查找任何a将 class 属性设置为的锚点,loc-link然后在锚点中查找任何(嵌套的)文本节点。

于 2012-09-10T10:03:51.553 回答