php拼接url
1. php的URL传参,通过URL传!
PHPURL传参是向URL里面添加字符串的方式来进行传递的。
例:
index.php?id=100&name=test
上面这个url传递了id为100,name为test的传,可以通过$_GET['id']和$_GET['name']分别获取这两个值。
2. php链接(url)语法
不大明白你的意图,如果要加个.html后缀,直接$url = str_replace($search,$replace,$url.'.html');不就可以了吗?
3. php如何实现url转发
最简单实现,一行代码
echo file_get_contents("http://www..com"); //网络就是你的了
就行了,这个效率低下
效率高一点,就 curl
上面的都是直接把人家页面的html代码拿过来显示
这要造成的结果就是,html里面使用相对路径的东西就会出错
比如说上面的网络,就无法使用搜索
然后 就是 Nginx反向代理
4. php 如何执行url
PHP:
header('Location: http://www.example.com/');
file_get_contents(http://it.sohu.com/7/1002/17/column20466721_3257.shtml);
5. php中,url链接的格式
<input type=text name=url><input type=button value='Go' onclick='location.href="www.baudi.com="+url.value;'>
6. php打开URL的几种方法
PHP中打开URL地址的几种方法总结,这里的函数主要用于小偷采集等函数。
1:用file_get_contents
以get方式获取内容
复制代码代码如下:
<?php
$url='http://www..com/';
$html=file_get_contents($url);
//print_r($http_response_header);
ec($html);
printhr();
printarr($http_response_header);
printhr();
?>
示例代码2:用fopen打开url,
以get方式获取内容
复制代码代码如下:
<?
$fp=fopen($url,'r');
printarr(stream_get_meta_data($fp));
printhr();
while(!feof($fp)){
$result.=fgets($fp,1024);
}
echo"urlbody:$result";
printhr();
fclose($fp);
?>
示例代码3:用file_get_contents函数,以post方式获取url
复制代码代码如下:
<?php
$data=array('foo'=>
'bar');
$data=http_build_query($data);
$opts=array(
'http'
=>array(
'method'=>'POST',
'header'=>"Content-type:
application/x-www-form-urlencoded".
"Content-Length:".strlen($data).
"",
'content'=>$data
),
);
$context=
stream_context_create($opts);
$html=
file_get_contents('http://localhost/e/admin/test.html',false,$context);
echo$html;
?>
示例代码4:用fsockopen函数打开url,以get方式获取完整的数据,包括header和body
复制代码代码如下:
<?
functionget_url
($url,$cookie=false){
$url=parse_url($url);
$query=
$url[path]."?".$url[query];
ec("Query:".$query);
$fp=fsockopen(
$url[host],$url[port]?$url[port]:80,$errno,$errstr,30);
if(!$fp){
returnfalse;
}else{
$request="GET$queryHTTP/1.1";
$request.="Host:$url[host]";
$request.="Connection:Close";
if($cookie)$request.="Cookie:$cookie ";
$request.="";
fwrite($fp,$request);
while(!@feof($fp)){
$result.=@fgets($fp,
1024);
}
fclose($fp);
return$result;
}
}
//获取url的html部分,去掉header
functionGetUrlHTML($url,$cookie=false){
$rowdata=get_url($url,$cookie);
if($rowdata)
{
$body=
stristr($rowdata,"");
$body=substr($body,4,strlen($body));
return$body;
}
returnfalse;
}
?>
7. PHP实现跳转到另外一个URL地址,如何实现呢
简单的加一个header就行 <?php header("location:http://www.163.com"); ?>
8. 求PHP跳转外部URL代码,带参数!
建一个GoToUrl.php文件,文件中用GET方法取得URL,然后用header重定向即可。
GoToUrl.php文件内容如下:
<?php
$url = $_GET['url'];
header("Location: $url");
?>
9. php怎么拼接下面的字符串
<liclass="active"url='<?phpechoaction_uri('AboutUS.AboutUS','aboutus_about');?>'><ahref="#home"data-toggle="tab"><?phpecho$lang['AboutUS'];?></a></li>
<liurl='<?phpechoaction_uri('AboutUS.AboutUS','aboutus_commonproblem');?>'><a
href="javascript:void(0);"data-toggle="tab"><?phpecho$lang['CommonProblem'];?></a></li>
<liurl='<?phpechoaction_uri('Feedback.Feedback','my_feedback_list');?>'><a
href="javascript:void(0);"data-toggle="tab"><?phpecho$lang['Suggestions'];?></a></li>
10. PHP如何实现url/do的形式
url/?do是一种URL参数,需要你在后台进行处理,比如你写上一个url:
localhost/index.php?id=123
那么在后台你使用$_GET['id']就可以获取到这个123,然后进行相应的处理,还有就是比如discuz的那种?mod=xxx&action=yyy的那种,原理都是一样的,取得内容后直接进行处理即可。