-1

可能重复:
如何在 PHP 中将 ereg 表达式转换为 preg?

PREG_REPLACE 中这个 EREG_REPLACE 函数的等价物是什么?

$html = ereg_replace("[^A-Za-z._0-9@ ]"," ",$html);
4

2 回答 2

2
$html = preg_replace("/[^A-Za-z._0-9@ ]/"," ",$html);

最大的区别是末端的分隔符,尽管还有其他分隔符。在这里阅读。

于 2012-11-28T17:37:50.247 回答
0

$html = preg_replace("/[^A-Za-z._0-9@ ]/"," ",$html);

preg_replace

于 2012-11-28T17:38:11.613 回答