ホームページ >バックエンド開発 >PHPチュートリアル >对file_get_contents()函数的迷惑
对file_get_contents()函数的疑惑
今天想试试远程调用,但是很郁闷
我利用file_get_contents获取一个模板文件
然后将模板再次修改
$moban = file_get_contents('http://127.0.0.1/2.html');
$htmlcontent = str_replace('{content1}',$contentreplace,$moban);
$htmlname="1.html";
file_put_contents($htmlname,$htmlcontent);
应该都看得懂吧
但是出现了一个问题 就是我生成出来的1.html是空白的,但是源码里面可以看到。
ps:本地调用那个1.html的时候没问题。也就是
$moban =file('2.html');
$htmlcontent = str_replace('1',$contentreplace,$moban);
$htmlname="1.html";
file_put_contents($htmlname,$htmlcontent);
这样就页面正常显示。
求解为什么原因?