including a remote file in PHP(在 PHP 中包含一个远程文件)
问题描述
我无法在我的 PHP 脚本中包含远程 PHP 文件.我想我的主机更改了 php 设置.
我使用的代码是:
包括http://domain.com/folder/file.php";
如何允许使用 php.ini/.htaccess 启用包含功能?
还有其他解决方法吗?
谢谢.
为了允许包含远程文件,指令 allow_url_include
必须在 php.ini 中设置为 On
p>
但从面向安全的角度来看,这很糟糕;因此,它通常被禁用(实际上我从未见过它启用)
和 allow_url_fopen
,它处理打开(不包括)远程文件——这个通常是启用的,因为它使通过 HTTP 获取数据更容易(比使用 curl 更容易)
I am unable to include a remote PHP file in my PHP script. I suppose my hosting changed php settings.
The code I was using was:
include "http://domain.com/folder/file.php";
How do I allow enable the include function using php.ini/.htaccess ?
Is there any other workaround?
Thanks.
To allow inclusion of remote files, the directive allow_url_include
must be set to On
in php.ini
But it is bad, in a security-oriented point of view ; and, so, it is generally disabled (I've never seen it enabled, actually)
It is not the same as allow_url_fopen
, which deals with opening (and not including) remote files -- and this one is generally enabled, because it makes fetching of data through HTTP much easier (easier than using curl)
这篇关于在 PHP 中包含一个远程文件的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:在 PHP 中包含一个远程文件
基础教程推荐
- WooCommerce 中选定产品类别的自定义产品价格后缀 2021-01-01
- Libpuzzle 索引数百万张图片? 2022-01-01
- 在 Woocommerce 中根据运输方式和付款方式添加费用 2021-01-01
- mysqli_insert_id 是否有可能在高流量应用程序中返回 2021-01-01
- 通过 PHP SoapClient 请求发送原始 XML 2021-01-01
- 在 PHP 中强制下载文件 - 在 Joomla 框架内 2022-01-01
- XAMPP 服务器不加载 CSS 文件 2022-01-01
- 如何在 PHP 中的请求之间持久化对象 2022-01-01
- 在多维数组中查找最大值 2021-01-01
- 超薄框架REST服务两次获得输出 2022-01-01