rtrim时间:2021-06-10 17:42:12<?php $str = '14岁'; $new_str = rtrim($str, '岁'); echo $new_str; 如果右边是‘岁’,就过滤掉。