Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
例子:
$name1="abcdefg"; $name2="csawea"; Output: bdfgsw
我想制作一个 php 代码,删除所有相同的字符及其在 Input1 和 Input2 中的重复,我在 PHP 中是新的,所以我对代码有点困惑,我知道 strrpos,substr func 但我需要看到一个成品为了理解流程。天呐!!
其他例如:
$name1= "aaabb"; $name2= "bccc"; Output: aaaccc
使用preg_match();或str_replace();。
preg_match();
str_replace();