> 백엔드 개발 > PHP 튜토리얼 > HTML을 구문 분석하기 위해 xpath를 사용하는 PHP 코드 예제

HTML을 구문 분석하기 위해 xpath를 사용하는 PHP 코드 예제

不言
풀어 주다: 2023-04-05 08:08:01
앞으로
3674명이 탐색했습니다.

이 기사의 내용은 HTML을 구문 분석하기 위해 xpath를 사용하는 PHP의 코드 예제에 관한 것입니다. 도움이 필요한 친구들이 참고할 수 있기를 바랍니다.

인스턴스 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 = &#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);
}
로그인 후 복사

위 내용은 HTML을 구문 분석하기 위해 xpath를 사용하는 PHP 코드 예제의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

관련 라벨:
php
원천:csdn.net
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿