Home > Backend Development > PHP Tutorial > 求该结果的preg_replace的替换写法

求该结果的preg_replace的替换写法

WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
Release: 2016-06-23 14:05:08
Original
918 people have browsed it

$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/';@preg_replace("#/(\d{2,4})/?$#e","\$t=array('name'=>'index.php','param'=>array('t'=>1,'id'=>$1))",strtolower($url));print_r($t);
Copy after login
66Array
(
[name] => index.php
[param] => Array
(
[t] => 1
[id] => 66
)

)

$url='http://www.xxx.com/66/';$s= preg_replace("#\/(\d{2,4})\/?$#","/name/index.php?t=1&id=$1",strtolower($url));$ar=parse_url($s);$arr['name']=substr($ar['path'],strrpos($ar['path'],'/')+1);parse_str($ar['query'],$t);$arr['param']=$t;print_r($arr);
Copy after login

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