2024年09月13日 建站教程
如何利用php语法如何删除字符串除了最后一个字符之外所有元素,下面web建站小编给大家简单介绍一下具体实现代码!
代码示列如下:
$string = "Hello World"; $string = substr_replace($string, "", 0, -1); echo $string; // 输出 "d"
本文链接:http://so.lmcjl.com/news/12931/