求该结果的preg_replace的轮换写法

WBOY
Release: 2016-06-13 12:48:37
Original
1051 people have browsed it

求该结果的preg_replace的替换写法
$url=http://www.xxx.com/66/
preg_replace("#^\/(\d{2,4})\/?$#","name/index.php?t=1&id=$1",strtolower($url));
通过以上我能得到一个重写的网址:name/index.php?t=1&sid=66 

我如何能直接通过一次正则替换,替换出一个数组:如下?
array(
      'name'=>index.php,
      'param'=>array('t'=>1,'id'=66)
     );


------解决方案--------------------
一步不行,需要自行分析形成数组。
------解决方案--------------------
$url = 'http://www.xxx.com/66/';<br />
@preg_replace("#/(\d{2,4})/?$#e","\$t=array('name'=>'index.php','param'=>array('t'=>1,'id'=>$1))",strtolower($url));<br />
print_r($t);<br />
Copy after login
66Array
(
[name] => index.php
[param] => Array
(
[t] => 1
[id] => 66
)

)

------解决方案--------------------
$url='http://www.xxx.com/66/';<br />
$s= preg_replace("#\/(\d{2,4})\/?$#","/name/index.php?t=1&id=$1",strtolower($url));<br />
$ar=parse_url($s);<br />
$arr['name']=substr($ar['path'],strrpos($ar['path'],'/')+1);<br />
parse_str($ar['query'],$t);<br />
$arr['param']=$t;<br />
print_r($arr);
Copy after login
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
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!