我使用简单的 HTML DOM 来抓取这样的 Javascript 文件:
$html = file_get_html('http://www.The-Javascript-File.js');
echo $html;
问题是我在控制台中收到此错误:
Resource interpreted as Script but transferred with MIME type text/html: http://www.The-Javascript-File.js
显然是因为它是一个 HTML 解析器('file_get_html')......我可以用简单的 HTML DOM 做些什么来将文件作为正确的 js 文件吗?