php正则表达式和替换

时间:2012-09-06 17:11:45

标签: php regex

使用php和一个正则表达式可以执行以下操作。获取内容中的所有超链接,并在超链接的顶级域与数组中的给定tld名称匹配时重写它们。

现在有一个正则表达式,它重写给定内容中的所有超链接

preg_replace('/<a(.*)href="([^"]*)"(.*)>/','<a$1href="goto.php?url=$2"$3>', $content);

例如

$tld = array("http://www.example.com","http://www.test.com");

if <a href="www.example.com">example</a> than <a href="/goto.php?url= www.example.com"</a>;

1 个答案:

答案 0 :(得分:1)

你可能想要巩固你的正则表达式......

$pattern = <<<EOL
/<a([^>]+)href\s*=\s*(['" ]?)([^"'> ]*)(['" ]?)([^>]*)>/si
EOL;

$replacement = "<a$1href='goto.php?url=$3'$5>";

preg_replace($pattern, $replacement, $content);

目前无法对此进行测试,因此可能存在拼写错误......