标签:
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); }
标签:
原文地址:http://www.cnblogs.com/shcolo/p/5945192.html