preg_replace内部链接

时间:2011-07-13 09:24:11

标签: php regex preg-replace

当我想preg_replace一个href时,我该怎么办,但只有当它是我自己的?

$a = 'href="http://mysite.com/?s=Bananas&lang=en"';
$host = 'http://mysite.com';
$a = preg_replace('#href="'.$host.'\/?[(s|p)]=([.*?])&lang=([.*?])"#e','href="index.php#$1\/$2\\lang\/$3"',$a);
//The result I want:
echo  $a;
//Becomes href="http://mysite.com/#s/Bananas\\lang/en"

但是我做错了什么? 这种正则表达式语法非常困难......

1 个答案:

答案 0 :(得分:0)

<?php
$a = 'href="http://mysite.com/?s=Bananas&lang=en"';
$host = 'http://mysite.com';
echo preg_replace('#href="'.preg_quote($host).'/\?(s|p)=(.*?)&lang=(.*?)"#','href="'.$host.'/#$1/$2\\\\\lang/$3"',$a);
?>

这似乎对我有用:)