来自另一个文件file_get_contents()的PHP file_get_contents()

时间:2014-11-09 00:18:27

标签: php file-get-contents

如何从包含函数file_get_contents()的file_get_contents()文件中获取内容以从另一个文件中获取内容?

for axample:

a.php - >的file_get_contents(b.php)

b.php - >的file_get_contents(www.google.com)中

我想在a.php

中获得www.google.com的html输出

编辑:a.php与b.php不同的服务器

2 个答案:

答案 0 :(得分:0)

a.php(在第一台服务器中)

<?php

echo file_get_contents("http://mysecondserver.com/b.php");

?>

b.php(在第二台服务器中)

<?php

echo file_get_contents("http://www.google.com");

?>

当你打开a.php时,它将采用b.php的html内容,而b.php正在获取google.com的html内容,所以我猜你已经完成了。

答案 1 :(得分:-2)

与从另一个没有file_get_contents的文件中获取内容的方式相同,您可以根据需要多次使用file_get_contents()。

例如:

1.PHP

<?php

echo file_get_contents("2.php");

?>

2.PHP

<?php

echo file_get_contents("3.php");

?>

3.php

<?php

echo "OK";

?>

输出将是 - 确定