找不到localhost服务器

时间:2014-05-04 18:07:07

标签: php

当我在本地主机上为file_get_contents($url)执行脚本时,它会继续加载几分钟,然后显示以下错误:

Server not found

Firefox can't find the server at www.localhost.com.

任何帮助?

1 个答案:

答案 0 :(得分:1)

你的剧本在做什么?你的服务器(例如apache)是否已启动,而在firefox中你启动了url

http://localhost/

?似乎firefox正在寻找另一个域而不是真正的localhost

将此代码放入您的php文件(仅此代码):

<?php

$url = 'http://www.yelp.com';

$output = file_get_contents($url);

var_dump($output);

并检查它是否正常工作。我们不知道file_get_html到底做了什么。也许它会导致问题