我在php(simple_html_dom.php)中使用简单的html dom解析器来解析网页数据并显示它。 它在localhost [wamp服务器](http://localhost/test/read.php)中工作正常,但是, read.php:
<?php
include('simple_html_dom.php');
$html = file_get_html('http://www.google.co.in/index.html');
echo $html;
?>
我有来自雅虎小型企业域名的网站(例如:www.mysite.com)
我把这两个php文件放到我的域路径中,就像这样, http://www.mysite.com/test/read.php 和 http://www.mysite.com/test/simple_html_dom.php
当我从我的域运行read.php时,它在读取此行时停止了,include('simple_html_dom.php');
请有人帮助我
谢谢, Nandha
答案 0 :(得分:0)
确保 allow_url_fopen 已启用, file_get_html()使用file_get_contents()
,当与HTTP一起使用时需要allow_url_fopen