PHP怎么调用动态URL

WBOY
Release: 2016-06-13 13:01:09
Original
1602 people have browsed it

PHP如何调用动态URL
RT


$id = trim($_GET['Url'],'"');
if($id""){
$url = 'http://www.hello-jobs.com/newsletter/'.$id.'.html';
include_once($url);
//echo $url;


测试URL是正确的,是不是我的PHP配置问题?
------解决方案--------------------
; Whether to allow include/require to open URLs (like http:// or ftp://) as files.
; http://php.net/allow-url-include
allow_url_include = on

如果包含的文件是 url 则需要打开 allow_url_include 开关

Related labels:
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