PHP
·
发表于 5年以前
·
阅读量:8292
$a = "abcababa";
$count=strpos($a,"ab");
$str=substr_replace($a,"",$count,2);
输出结果:cababa
代码虽短,但也算是一个小算法!