我正在使用:
$myFile = SITE_URL.'/abc.html';
$template_msg = file_get_contents($myFile);
此代码适用于我的本地计算机,但它不适用于实际网站。它给了我500页未找到的错误。
答案 0 :(得分:0)
使用此类路径。
echo $ myFile;并检查它是否像'http://www.example.com/abc.html'这种类型的路径,然后它工作。
$myFile = SITE_URL.'/abc.html';
$template_msg = file_get_contents($myFile);
希望对你有所帮助。