首页  >  文章  >  后端开发  >  php替换一次

php替换一次

WBOY
WBOY原创
2016-06-23 14:31:49948浏览

最近在写一个cms系统,用的是php,写模板的时候,需要字串只替换一次的函数,上网查了一下,有一个用递归做的,晦涩难懂,于是自己写了一个

function replace_once($replace,$str,$targetstr)/$replace为要替换的字串,$targetstr为替换字串,$str为原字串
{
    $tempstr = $str;
    for (;;)
    {
        $tempindex = strrpos($tempstr,$replace);
        if($tempindex!=false)
        {
            $tempstr = substr($str,0,$tempindex);
        }
        else break;
    }
    $replaceindex = strlen($tempstr);
    //echo$replaceindex;
    //echo $replaceindex."hao";
    $str = substr($str,0,$replaceindex).$targetstr.substr($str,$replaceindex+strlen($replace));
    return $str;
}

声明:
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn