Home  >  Article  >  Backend Development  >  PHP怎么调用动态URL

PHP怎么调用动态URL

WBOY
WBOYOriginal
2016-06-13 13:01:091599browse

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 开关

Statement:
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