码迷,mamicode.com
首页 > Web开发 > 详细

PHP提取字符串中的数字

时间:2016-10-10 13:35:18      阅读:184      评论:0      收藏:0      [点我收藏+]

标签:

function number($str)
{
    return preg_replace(‘/\D/s‘, ‘‘, $str);
}
// echo 123456
echo number(‘Hello 123 world 456 !!‘);
//支持小数
function number($str)
{
return preg_replace(‘/[^\.0123456789]/s‘, ‘‘, $str);
}

 

PHP提取字符串中的数字

标签:

原文地址:http://www.cnblogs.com/shcolo/p/5945192.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!