//轉錢格式 函式
function money_data($in_num)
{
    //0為小數後幾位
    $money_format = number_format($in_num, 0, '.', ',');
    return $money_format;
}

//錢轉回數字
function money_to_num($in_num)
{
    $money_format = str_replace(",","",$in_num);
    return $money_format;
}


arrow
arrow
    全站熱搜
    創作者介紹
    創作者 incode 的頭像
    incode

    程式筆記本

    incode 發表在 痞客邦 留言(0) 人氣()