PHP实用函数分享之去除多余的0
更新时间:2015年02月06日 10:13:03 投稿:hebedich
本系列文章是给大家分享一些常见的实用的PHP函数,本文是第一篇,我们来一个简单的,去除多余的0
代码很简洁,也很简单,就不多废话了。
复制代码 代码如下:
/**
* 去除多余的0
*/
function del0($s)
{
$s = trim(strval($s));
if (preg_match('#^-?\d+?\.0+$#', $s)) {
return preg_replace('#^(-?\d+?)\.0+$#','$1',$s);
}
if (preg_match('#^-?\d+?\.[0-9]+?0+$#', $s)) {
return preg_replace('#^(-?\d+\.[0-9]+?)0+$#','$1',$s);
}
return $s;
}
小伙伴们自由扩展下,可以做很多事情,希望大家能够喜欢。
您可能感兴趣的文章:
相关文章
PHP错误Warning: Cannot modify header information - headers alr
这篇文章主要介绍了PHP错误Warning: Cannot modify header information - headers already sent by解决方法,需要的朋友可以参考下2014-09-09
最新评论