0

我需要更换链接index.php?a=2,但如果它有&a=2那么不要更换它。 index.php?a=2 <- replace index.php?a=2&b=3 <- don't replace

使用PHP,preg_replace()

我试过用这个:

preg_replace('^index\.php\?a=([0-9]+)(?!amp;)^', 'home', 'index.php?a=2');
preg_replace('^index\.php\?a=([0-9]+)(?!amp;)^', 'home', 'index.php?a=2&b=3');
preg_replace('^index\.php\?a=([0-9]+)(?!&)^', 'home', 'index.php?a=2');
preg_replace('^index\.php\?a=([0-9]+)(?!&)^', 'home', 'index.php?a=2&b=3');

我正在使用:

preg_replace('^(\/*)index\.php\?a=([0-9]+)(?!&)^e', "a($2)", 'index.php?a=2');

function a($id) {
  // Getting name from mysql...
  return '/a$id_$name';
}

它正在使用这个:index.php?a=2&b0,但index.php?a=10&b=0不是。

4

3 回答 3

1

PHP 脚本:

<?php
print preg_replace('/index\.php\?a=[0-9]+(?!&)/', 'home', 'index.php?a=2');
print "\n";
print preg_replace('/index\.php\?a=[0-9]+(?!&)/', 'home', 'index.php?a=2&b=3'); 
?>

输出:

home
index.php?a=2&b=3

在这里测试代码。

于 2012-07-03T12:13:07.830 回答
0
'/index\.php\?a=\d+(?!\s*&)/'
于 2012-07-03T12:49:55.803 回答
0
'/index\.php\?a=[^&]+(?!&)/'
于 2012-07-03T12:08:16.673 回答