How do I include an external file in PHP?(如何在 PHP 中包含外部文件?)
问题描述
我需要包含另一个 url 上的外部文件.例如 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?
推荐答案
我不知道你为什么要这样做,但你肯定可以尝试以下方法:
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;
?>
这篇关于如何在 PHP 中包含外部文件?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何在 PHP 中包含外部文件?
基础教程推荐
- 在 PHP 中强制下载文件 - 在 Joomla 框架内 2022-01-01
- 通过 PHP SoapClient 请求发送原始 XML 2021-01-01
- 在多维数组中查找最大值 2021-01-01
- mysqli_insert_id 是否有可能在高流量应用程序中返回 2021-01-01
- 超薄框架REST服务两次获得输出 2022-01-01
- Libpuzzle 索引数百万张图片? 2022-01-01
- XAMPP 服务器不加载 CSS 文件 2022-01-01
- 如何在 PHP 中的请求之间持久化对象 2022-01-01
- 在 Woocommerce 中根据运输方式和付款方式添加费用 2021-01-01
- WooCommerce 中选定产品类别的自定义产品价格后缀 2021-01-01