PHP replace string (only replace the first string)

WBOY
Release: 2016-07-25 08:52:20
Original
910 people have browsed it
  1. $str=preg_replace('/abc/','xyz',$str,1);
  2. echo $str;
Copy code

Do not use regular string replacement code:

  1. $replace='xyz';
  2. if(($position=strpos($str,$replace))!==false){
  3. $leng=strlen($replace);
  4. $str=substr_replace ($str,'xyz',$position,$leng);
  5. }
  6. echo $str;
Copy code


source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!