php怎么替换指定位置的字符串

在PHP中,可以使用str_replace()函数来替换指定位置的字符串,语法格式“substr_replace(string,replacement,start,length)”,参数start用于指定替换位置(在字符串的何处开始替换)。

本教程操作环境:windows7系统、PHP7.1版,DELL G3电脑

php替换指定位置字符串

<?php
$str = 'hello world';
// 替换指定位置的字符
$str = substr_replace($str,"earth",6);;
// 显示字符
echo $str;
?>

输出:

hello earth

相关函数说明:

substr_replace() 函数把字符串的一部分替换为另一个字符串。语法如下:

substr_replace(string,replacement,start,length)
参数 描述
string 必需。规定要检查的字符串。
replacement 必需。规定要插入的字符串。
start 必需。规定在字符串的何处开始替换。

  • 正数 – 在字符串的指定位置开始
  • 负数 – 在从字符串结尾的指定位置开始
  • 0 – 在字符串中的第一个字符处开始
length 可选。规定要替换多少个字符。默认是与字符串长度相同。

  • 正数 – 被替换的字符串长度
  • 负数 – 从字符串末端开始的被替换字符数
  • 0 – 插入而非替换

注释:如果 start 参数是负数且 length 小于或者等于 start,则 length 为 0。

推荐学习:《PHP视频教程》

hmoban主题是根据ripro二开的主题,极致后台体验,无插件,集成会员系统
自学咖网 » php怎么替换指定位置的字符串