duanbeng1923 2017-03-14 10:19
浏览 59
已采纳

simple_html_dom访问div里面的ul

I'm using simple_html_dom for class html grabbing script, i got a problem when trying to grab ul inside a div

HTML

<div class="attributes">
      <div class="headline">test header</div>
                <ul>
                  <li>test 1</li>
                  <li>test 2</li>
                  <li>test 3</li>

                </ul>
    </div>

PHP

//call to function
$url = 'http://example.com';

$data = dlPage2($url,'.attributes');
echo $data;


//function

function dlPage2($href,$element) {

    $curl = curl_init();
    curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, FALSE);
    curl_setopt($curl, CURLOPT_HEADER, false);
    curl_setopt($curl, CURLOPT_FOLLOWLOCATION, true);
    curl_setopt($curl, CURLOPT_URL, $href);
    curl_setopt($curl, CURLOPT_REFERER, $href);
    curl_setopt($curl, CURLOPT_RETURNTRANSFER, TRUE);
    curl_setopt($curl, CURLOPT_USERAGENT, "Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.125 Safari/533.4");
    $str = curl_exec($curl);
    curl_close($curl);

    // Create a DOM object
    $dom = new simple_html_dom();
    // Load HTML from a string
    $dom->load($str);
$dom= $dom->find($element,0)->outertext;
    return $dom;
    }

above code i can grab whole <div class="attributes"> but i need to get html of <ul> tag inside that div,

can someone help me to change this please

  • 写回答

1条回答 默认 最新

  • douzi0609 2017-03-14 10:33
    关注

    You have to select <ul> inside $element by using

    $dom = $dom->find($element.' ul', 0)->outertext;

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 根据以下文字信息,做EA模型图
  • ¥15 删除虚拟显示器驱动 删除所有 Xorg 配置文件 删除显示器缓存文件 重启系统 可是依旧无法退出虚拟显示器
  • ¥15 vscode程序一直报同样的错,如何解决?
  • ¥15 关于使用unity中遇到的问题
  • ¥15 开放世界如何写线性关卡的用例(类似原神)
  • ¥15 关于并联谐振电磁感应加热
  • ¥60 请查询全国几个煤炭大省近十年的煤炭铁路及公路的货物周转量
  • ¥15 请帮我看看我这道c语言题到底漏了哪种情况吧!
  • ¥60 关机时蓝屏并显示KMODE_EXCEPTION_NOT_HANDLED,怎么修?
  • ¥66 如何制作支付宝扫码跳转到发红包界面