Replace string only once with php preg_replace

后端 未结 2 1207
长情又很酷
长情又很酷 2020-12-02 02:44

I need a replace string once function and believe preg_match might be my best bet.

I was using this, but due to the dynamicness of use, sometimes this function behav

2条回答
  •  遥遥无期
    2020-12-02 02:51

    You can also use T-Regx library:

    pattern('[a-z]+')->replace($string)->first()->with($replace);
    

    and also you should not use preg_quote(), as it's not safe - try Prepared Patterns.

提交回复
热议问题