欢迎来到元素模板ys720.com,本站提供专业的织梦模板PBOOTCMS模板网站模板网站修改/网站仿站
当前位置:主页 > 程序教程 > 其他教程 >
其他教程

php怎么去除字符串前两位字符

(元素模板) / 2023-02-06 13:26

php去除字符串前两位字符,总共有两种方法

1、使用substr()函数

substr() 函数可以从字符串的指定位置截取一定长度的字符,返回字符串的提取部分,如果失败则返回 FALSE,或者返回一个空字符串。

<?php 
$str = "hello,world";
$str2 = substr($str, 2); 
echo $str2;
?>

 

2、使用substr_replace()函数

substr_replace() 函数把字符串的一部分替换为另一个字符串。

<?php 
$str = "world";
$str2 = substr_replace($str, '', 0,2); 
echo $str2;
?>
Copyright @ 2013-2021 元素模板 www.ys720.com All Rights Reserved. 版权所有 元素模板 www.ys720.com