将小数后面多余的零去掉

<?php
declare(strict_types=1);
ini_set('display_errors', 'On');
ini_set('error_reporting', E_ALL);
function_exists('opcache_reset') && opcache_reset();

/**
 * 将小数后面多余的零去掉,若小数点后全是零则连小数点也去掉
 *
 * @param mixed $num 数字或数字字符串
 * @return string 去掉小数点后面多余的零后的字符串
 */
function decimal_format(mixed $num): string
{
    return (string)(float)$num;
}

echo decimal_format('3.14') . PHP_EOL; // 3.14
echo decimal_format('3.10') . PHP_EOL; // 3.1
echo decimal_format('3.00') . PHP_EOL; // 3

Copyright © 2025 码农人生. All Rights Reserved