慕仙森
				您可以遍历所有字符并测试它们是否为数字,找到第一个时返回:$str='hello12cool4here';for( $i=0; $i< strlen( $str ); $i++ ){    if( is_numeric( substr($str,$i,1) ) )exit( substr( $str, $i+1 ) );}或将其放入函数中:function findremainder( $str ){    for( $i=0; $i< strlen( $str ); $i++ ){        if( is_numeric( substr($str,$i,1) ) )return( substr( $str, $i+1 ) );    }    return $str;}echo findremainder( $str );