PHP提取字符串中的数字

function number($str)
{
    return preg_replace('/\D/s', '', $str);
}
// echo 123456
echo number('Hello 123 world 456 !!');

为您推荐