PHP - substr_replace 函数



语法

substr_replace(string,replacement,start,length)

定义和用法

用于将字符串的一部分替换为另一个字符串。

返回值

返回替换后的字符串,如果返回值为数组,则返回数组。

参数

序号 参数及描述
1

string

指定要检查的字符串。

2

replacement

指定要插入的字符串。

3

start

指定在字符串中开始插入的位置。

4

length

指定字符串的长度。

示例

尝试以下示例

<?php
   echo substr_replace("Tutorilas point","Tutorials Point",0);
?>

这将产生以下结果:

Tutorials Point
php_function_reference.htm
广告