file_get_contents未按预期工作

时间:2017-02-06 20:10:14

标签: php file-get-contents

几年前,我在一个名为' wp'的子文件夹中设计了一个wordpress安装我的网站。我希望我的网站将wordpress作为主页面,因此我更改了我网站的主页' index.php',以包含以下内容:

<?php 
$filename="http://www.example.com/wp/index.php";
$file= file_get_contents($filename);
echo $file;
?>

这应该反映我的wordpress主页。 它曾经工作,但现在只是空白。造成这种情况的原因是什么?

1 个答案:

答案 0 :(得分:2)

如果没有完整的信息很难说,但最常见的原因是设置为 allow_url_fopen - 如果设置为OffNo或{{1}它将禁止以这种方式获取页面。

请为我们获取此ini-setting的值。最简单的方法是:

0

此设置无法使用echo 'allow_url_fopen = ', ini_get('allow_url_fopen'); 进行更改,因为它具有ini_set()可更改性。