已弃用的PHP函数的替代方法:eregi_replace

时间:2010-01-18 09:10:20

标签: php function deprecated

有人知道弃用的eregi_replace函数的一个很好的选择吗?

我需要这个片段:

$pattern = "([a-z0-9][_a-z0-9.-]+@([0-9a-z][_0-9a-z-]+\.)+[a-z]{2,6})";
$replace = "<a href=\"mailto:\\1\">\\1</a>";
$text = eregi_replace($pattern, $replace, $text);

谢谢!

2 个答案:

答案 0 :(得分:22)

<强>的preg_replace

http://php.net/manual/fr/function.preg-replace.php

$pattern = "/([a-z0-9][_a-z0-9.-]+@([0-9a-z][_0-9a-z-]+\.)+[a-z]{2,6})/i";
$replace = "<a href=\"mailto:\\1\">\\1</a>";
$text = preg_replace($pattern, $replace, $text);

答案 1 :(得分:1)