Heim  >  Artikel  >  Backend-Entwicklung  >  PHP-Codebeispiel mit XPath zum Parsen von HTML

PHP-Codebeispiel mit XPath zum Parsen von HTML

不言
不言nach vorne
2019-02-14 13:57:153646Durchsuche

Der Inhalt dieses Artikels befasst sich mit dem Codebeispiel für die Verwendung von XPath zum Parsen von HTML. Ich hoffe, dass es für Sie hilfreich ist.

Instanz 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/>"; 
}

Instanz 2

$url = &#39;http://www.baidu.com&#39;;
$ch = curl_init();
curl_setopt($ch, CURLOPT_FILE, fopen(&#39;php://stdout&#39;, &#39;w&#39;));
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(&#39;//*[@id="lg"]/img/@src&#39;);
foreach ($elements as $e) {
  echo ($e->nodeValue);
}

Das obige ist der detaillierte Inhalt vonPHP-Codebeispiel mit XPath zum Parsen von HTML. Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!

Stellungnahme:
Dieser Artikel ist reproduziert unter:csdn.net. Bei Verstößen wenden Sie sich bitte an admin@php.cn löschen