欢迎各位兄弟 发布技术文章

这里的技术是共享的

You are here

php程序编写:返回某字符串在另一个字符串中,第5次出现的位置 第二次出现的位置 有大用

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...
普通分类: