PHP utility function Sharing removal redundant 0,php utility function sharing _php Tutorial

Source: Internet
Author: User

PHP utility function Sharing remove redundant 0,php utility function sharing


The code is simple and easy, and it's not much of a nonsense.

Copy the Code code as follows:
/**
* Remove the excess 0
*/
function Del0 ($s)
{
$s = trim (strval ($s));
if (Preg_match (' #^-?\d+?\.0+$# ', $s)) {
Return Preg_replace (' #^ (-?\d+?) \.0+$# ', ' $ ', $s);
}
if (Preg_match (' #^-?\d+?\.[ 0-9]+?0+$# ', $s)) {
Return Preg_replace (' #^ (-?\d+\.[ 0-9]+?) 0+$# ', ' $ ', $s);
}
return $s;
}

Small partners to expand freely, can do a lot of things, I hope you can like.

http://www.bkjia.com/PHPjc/954665.html www.bkjia.com true http://www.bkjia.com/PHPjc/954665.html techarticle PHP Utility functions to share the removal of redundant 0,php utility function Sharing code is very concise, but also very simple, not much nonsense. Copy the code code as follows:/** * Remove Excess 0 */functio ...

  • Related Article

    Contact Us

    The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

    If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.