如何在两个实例(对象)中从网页读取数据?

我正在从事这个项目:


<?php

$curl = curl_init("https://www.timeanddate.com/worldclock/");

curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1);

$html = curl_exec($curl);


if(!empty($curl)){

    $thispage = new DOMDocument;

    libxml_use_internal_errors(true);

    $thispage->loadHTML($html);

    libxml_clear_errors();


    $xpath = new DOMXPath($thispage);

    $status = $xpath->evaluate('string(//*[@id="p36"])');

    echo $status;



}

Curl连接到网站timeanddate.com并从对象//*[@id="p36"](xpath)读取数据。


如何从两个对象而不是一个对象读取数据?


holdtom
浏览 111回答 1
1回答
打开App,查看更多内容
随时随地看视频慕课网APP