我一直在使用preg_match
从 HTML 文件中抓取 URL,但我只想提取具有.mp3
扩展名的 URL。有人告诉我尝试 DOM,我一直在尝试修复代码,但它不起作用。无论我做什么,我都会得到一个空白页。
我究竟做错了什么?
<?php
$url = 'http://www.mp3olimp.net/miley-cyrus-when-i-look-at-you/';
$html = @file_get_html($url);
$dom = new DOMDocument();
$doc->loadHTML($html);
$xpath = new DOMXPath($doc);
$links = $xpath->query('//a[ends-with(@href, ".mp3")]/@href');
echo $links;
?>