Home > Backend Development > PHP Tutorial > 关于include("http:///的用法

关于include("http:///的用法

WBOY
Release: 2016-06-23 14:14:46
Original
1113 people have browsed it

我自己建立的服务器下有2个文件
   product.php  和example.html

1. 其中在product.php中代码如下:

可以完整的显示example.html的信息

2.如果在product.php中加入代码:

就不能显示http://lusongsong.com/info/post/92.html中的内容


问:1.是不是Include是不是只能显示本地服务器的内容
    2.请问我要显示其他服务器的内容,改怎么写?例如http://lusongsong.com/info/post/92.html


回复讨论(解决方案)

file_get_contents or fopen or curl

php.ini 中需要开启 allow_url_include=On 才能include 远程文件,不过如果不是你自己的服务器,一般是没有权限修改php.ini 的,因此安全的做法是用file_get_contents 或者 curl

file_get_contents or fopen or curl 或者 iframe

楼上的都说清楚了。

include一个远程文件,你要确定那个文件返回来的东西是直接插入php能识别的

你试试

abc
?>
红字部分如果不出错,就能用include获取,自己再想想
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template