bcdiv bcmul

/**
* 分 转为 钱
*/
public static function cent2yuan($price) {
return bcdiv($price,100,2);
}

/**
* 元 转为 分
*/
public static function yuan2cent($price) {
return bcmul($price,100,0);
}
posted @ 2018-12-03 20:02  盘思动  阅读(225)  评论(0编辑  收藏  举报