x
'),c.close();var d=c.documentElement.scrollHeight>c.body.scrollHeight;return a.parentNode.removeChild(a),b=d?document.documentElement:document.body}var b=null;Object.defineProperty(document,"scrollingElement",{get:a})}();var b;return{afterOpen:function(c){c||(b=document.scrollingElement.scrollTop,document.body.classList.add(a),document.body.style.top=-b+"px")},beforeClose:function(c){c||(document.body.classList.remove(a),document.scrollingElement.scrollTop=b)},getScrollTop:function(){return b}}}("popup-open"); 
  • 企业400电话
  • 微网小程序
  • AI电话机器人
  • 电商代运营
  • 全 部 栏 目

    企业400电话 网络优化推广 AI电话机器人 呼叫中心 网站建设 商标✡知产 微网小程序 电商运营 彩铃•短信 增值拓展业务
    php用xpath解析html的代码实例讲解

    实例1

    $xml = simplexml_load_file('https://forums.eveonline.com'); 
     
    $names = $xml->xpath("html/body/p/p/form/p/p/p/p/p[*]/p/p/table//tr/td[@class='topicViews']"); 
    foreach($names as $name) 
    { 
     echo $name . "br/>"; 
    }

    实例2

    $url = 'http://www.baidu.com';
    $ch = curl_init();
    curl_setopt($ch, CURLOPT_FILE, fopen('php://stdout', 'w'));
    curl_setopt($ch, CURLOPT_RETURNTRANSFER, TRUE);
    curl_setopt($ch, CURLOPT_URL, $url);
    $html = curl_exec($ch); 
    curl_close($ch);
     
    // create document object model
    $dom = new DOMDocument();
    // load html into document object model
    @$dom->loadHTML($html);
    // create domxpath instance
    $xPath = new DOMXPath($dom);
    // get all elements with a particular id and then loop through and print the href attribute
    $elements = $xPath->query('//*[@id="lg"]/img/@src');
    foreach ($elements as $e) {
     echo ($e->nodeValue);
    }

    以上就是相关的2个实例内容,以及相关的代码, 感谢大家对脚本之家的支持。

    您可能感兴趣的文章:
    • PHP操作XML中XPath的应用示例
    • PHP xpath()函数讲解
    • PHP registerXPathNamespace()函数讲解
    • PHP使用xpath解析XML的方法详解
    • php+xml编程之xpath的应用实例
    • php XPath对XML文件查找及修改实现代码
    • PHP xpath提取网页数据内容代码解析
    上一篇:PHP内部实现打乱字符串顺序函数str_shuffle的方法
    下一篇:PHP的curl函数的用法总结
  • 相关文章
  • 

    © 2016-2020 巨人网络通讯 版权所有

    《增值电信业务经营许可证》 苏ICP备15040257号-8

    php用xpath解析html的代码实例讲解 php,用,xpath,解析,html,的,