Menu

10/10/21

Xây dựng hàm định dạng tiền tệ php

<?php
/**
 *
 * Chuyển đổi chuỗi kí tự thành dạng slug dùng cho việc tạo friendly url.
 *
 * @access    public
 * @param    string
 * @return    string
 */
if (!function_exists('currency_format')) {
    function currency_format($number, $suffix = 'đ') {
        if (!empty($number)) {
            return number_format($number, 0, ',', '.') . "{$suffix}";
        }
    }
}

Khi gọi hàm:

<?php
echo currency_format(5000000);
?>
<?php
echo currency_format(37, 'USD');
?>

















No comments:

Post a Comment