You are here
php程序编写:返回某字符串在另一个字符串中,第5次出现的位置 第二次出现的位置 有大用
星期五, 2016-04-01 16:55 — shiping1
$s = "sabcdefdadsdcasdfdasdsa";$a = "a";echo newstripos($s,$a,5); // 输出22/*** 写一个新的stripos, $count参数表示第count次出现的问题**/function newstripos($str, $find, $count, $offset=0){$pos = stripos($str, $find, $offset);$count--;if ($count > 0 && $pos !== FALSE){$pos = newstripos($str, $find ,$count, $pos+1);}return $pos;}
来自 http://zhidao.baidu.com/link?url=GnsfHCPsLu_g-dx_-RuFufk24muwrpWcyb0mn3croOvrhI__bsAjMy_krLaRfGCiDA3...