84669 人學習
152542 人學習
20005 人學習
5487 人學習
7821 人學習
359900 人學習
3350 人學習
180660 人學習
48569 人學習
18603 人學習
40936 人學習
1549 人學習
1183 人學習
32909 人學習
我想使用PHP將單字"Dozenten"替換為"Dozentin",將單字"Dozent"替換為"Dozenten"。問題是,"Dozent"在兩個單字中都出現。我無法繼續使用`str_replace`。如何避免得到類似"Dozentenin"這樣的結果呢?
你可以使用`strtr`函数来实现,它可以在字符串中进行子字符串的翻译(替换):
<?php $s = "Dozenten Dozent Dozent Dozenten"; echo strtr($s, array("Dozenten" > "Dozentin", "Dozent" => "Dozenten"));
你可以使用`strtr`函数来实现,它可以在字符串中进行子字符串的翻译(替换):
<?php $s = "Dozenten Dozent Dozent Dozenten"; echo strtr($s, array("Dozenten" > "Dozentin", "Dozent" => "Dozenten"));