当前位置:Gxlcms > PHP教程 > php字符层截取技艺

php字符层截取技艺

时间:2021-07-01 10:21:17 帮助过:29人阅读

php 字符层截取 技巧
/**
* 去除字符串最后1个字符 最简单方法
*/

$str = "abcd";
$newstr = substr($str, 0, -1); //abc

人气教程排行