我用它str_replace
重命名ü
为ue
:
$headline = "für";
echo str_replace('ü','ue',$headline); // will output fuer
现在,如果有ö、ä和ß怎么办。我需要将它们分别转换为 oe、ae、ss。我可以使用preg_replace
吗?如果是,如何。
我用它str_replace
重命名ü
为ue
:
$headline = "für";
echo str_replace('ü','ue',$headline); // will output fuer
现在,如果有ö、ä和ß怎么办。我需要将它们分别转换为 oe、ae、ss。我可以使用preg_replace
吗?如果是,如何。