如何在 PHP 中包含外部文件?

发布于 2024-10-02 19:58:57 字数 208 浏览 2 评论 0原文

我需要包含另一个网址上的外部文件。例如 google.com。我已经使用本地文件测试了包含,所以这很有效,但是如果我尝试使用 127.0.0.1/filetoinclude.txt 什么也不会发生。我没有收到错误,我只是收到一个空白页。 那么我该如何在我的页面中包含 http://google.com 呢?

I need to include and external file that is on another url. For example google.com. I have tested the include using local files, so that much works, but if I try and use 127.0.0.1/filetoinclude.txt Nothing happens. I don't get an error, I just get a blank page.
So how am I supposed to include http://google.com in my page?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

若相惜即相离 2024-10-09 19:58:57

我不知道你为什么要这样做,但你肯定可以尝试这样的事情:

<?php
    $google_page = file_get_contents('http://www.google.com');
    echo $google_page;
?>

I have no idea why you'd want to do this, but you could most certainly try something like:

<?php
    $google_page = file_get_contents('http://www.google.com');
    echo $google_page;
?>
是伱的 2024-10-09 19:58:57

您需要使用 file_get_contents

$data = file_get_contents('http://google.com'); //will block

fopen

$fp = fopen('http://google.com', 'r');
$data = '';
while(!feof($fp)) 
   $data .= fread($fp, 4092); 
fclose($fp); 

echo $data;

You'll need to use file_get_contents:

$data = file_get_contents('http://google.com'); //will block

Or fopen:

$fp = fopen('http://google.com', 'r');
$data = '';
while(!feof($fp)) 
   $data .= fread($fp, 4092); 
fclose($fp); 

echo $data;
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文