前言 在项目开发的过程中有时候需要进行字符串的截取并且根据情况需要返回前边部分后者后边部分。 方法 <?php $a = '123_abc'; $front = substr($a, 0, strrpos($a, '_')); $after = substr($a, strripos($a, '_') + 1); echo $front; //输出123 echo $after; //输出abc