php怎么去除字符串最后一位字符
时间:2022-07-29 19:59
两种去除方法:1、用substr()去除,只需要将该函数的第二个参数设置为0,第三个参数设置为(字符串长度-1)即可,语法“substr($str,0,strlen($str)-1)”。2、用str_split()将字符串转为字符数组,用array_pop()删除字符数组中的最后一个元素,再用implode()将字符数组转回字符串即可。 本教程操作环境:windows7系统、PHP8.1版、DELL G3电脑 php去除字符串最后一位字符的两种方法 方法1:使用substr()函数去除 substr() 函数可以从字符串的指定位置截取一定长度的字符。 只需要将该函数的第二个参数设置为0,第三个参数设置为(字符串长度-1)即可。 方法2:使用str_split()+array_pop()+implode()函数 使用str_split() 函数把字符串分割到数组中,即将字符串转为字符数组。 使用array_pop()函数删除字符数组中的最后一个字符元素 使用implode()函数将字符数组转回字符串 推荐学习:《PHP视频教程》 以上就是php怎么去除字符串最后一位字符的详细内容,更多请关注gxlsystem.com其它相关文章!substr(string,start,length)
参数 描述 string 必需。规定要返回其中一部分的字符串。 start 必需。规定在字符串的何处开始。 length 可选。规定要返回的字符串长度。默认是直到字符串的结尾。 <?php
header('content-type:text/html;charset=utf-8');
$str="Hello world";
echo "原字符串:".$str."<br>";
echo "去除最后一位字符:".substr($str,0,strlen($str)-1)."<br>";
?>
<?php
header('content-type:text/html;charset=utf-8');
$str="Hello!";
echo "原字符串:".$str."<br>";
$arr=str_split($str);
array_pop($arr);
echo "去除最后一位字符:".implode($arr)."<br>";
?>