我使用file_get_contents抓取了一些网址和标题。现在我想编辑它们并显示在我的页面中。但我认为不可能。
$html = file_get_html($gg_url);
// find all div tags with id=s
$ttt = $html->find('div.s');
结果是:
www.example.com and bla bla bla under that DIV
但该网址标记为<cite>www.exaple.com</cite>
。
我需要的只是结果中的url,但是整个事物(url +其他文本)都在一个变量中。有没有办法获得该网址?
答案 0 :(得分:2)
$html = file_get_html($gg_url);
$ttt = $html->find('cite')->innertext;
echo $ttt;