正如标题中描述的那样,目前我的代码是:
<?php
$url = "http://www.vipboxsports.me/football/23863/1/chelsea-tv-live-stream-online.html";
$html = str_get_html($url);
$elem = $html->find('div[id=streambox]', 0);
echo $elem;
?>
但此时它不起作用上面的代码有什么问题
正如标题中描述的那样,目前我的代码是:
<?php
$url = "http://www.vipboxsports.me/football/23863/1/chelsea-tv-live-stream-online.html";
$html = str_get_html($url);
$elem = $html->find('div[id=streambox]', 0);
echo $elem;
?>
但此时它不起作用上面的代码有什么问题
你需要使用file_get_html
. str_get_html
是当你已经有一个 html 字符串时。
$url = "http://www.vipboxsports.me/football/23863/1/chelsea-tv-live-stream-online.html";
$html = file_get_html($url);
$elem = $html->find('div[id=streambox]', 0);
echo $elem;
<?php
$url = "remotesite.com/pages/page1.html";
$html = str_get_html($url);
$elem = $html->find('div[id=mydiv]', 0);
echo $elem;
?>