<?php
$str = '14岁';
$new_str = rtrim($str, '岁');
echo $new_str;

如果右边是‘岁’,就过滤掉。

04-20 20:20