PHP preg_replace:[éèêë] vs(é|è|ê|ë)

时间:2017-10-03 18:20:25

标签: php preg-replace

我希望'é'成为'e'。

有人可以向我解释为什么当$ mot2正常工作时$ mot1显示'ee'?

$mot="é";
$mot1=preg_replace("/[éèêë]/", "e", $mot);
$mot2=preg_replace("/(é|è|ê|ë)/", "e", $mot);
echo $mot1." ".$mot2;

您可以在此处进行测试:http://phptester.net/

谢谢! :)

雷诺

0 个答案:

没有答案