使用file_get_contents PHP函数时出错

时间:2013-04-15 08:02:36

标签: php javascript

我正在使用:

$myFile = SITE_URL.'/abc.html'; 
$template_msg = file_get_contents($myFile);

此代码适用于我的本地计算机,但它不适用于实际网站。它给了我500页未找到的错误。

1 个答案:

答案 0 :(得分:0)

使用此类路径。

echo $ myFile;并检查它是否像'http://www.example.com/abc.html'这种类型的路径,然后它工作。

$myFile = SITE_URL.'/abc.html'; 
$template_msg = file_get_contents($myFile);

希望对你有所帮助。