PHP元转分的错误示范代码分析

2023-02-08 22:46:35 13 0
魁首哥

PHP元转分的错误示范代码分析

本篇内容主要讲解“PHP元转分的错误示范代码分析”,感兴趣的朋友不妨来看看。本文介绍的方法操作简单快捷,实用性强。下面就让小编来带大家学习“PHP元转分的错误示范代码分析”吧!

PHP元转分的错误示范代码分析

错误的示范。

$price=20.08;echo yuan_to_fen($price);function yuan_to_fen($price){  return intval(100 * $price);}function yuan_to_fen2($price){  return floor(100 * $price);}function yuan_to_fen3($price){  return (int)(100 * $price);}

正确的示范

$price=20.08;echo yuan_to_fen($price);function yuan_to_fen($price){  return round(100 * $price);}

汇总

<?php$a = 20.08;$b = yuan_to_fen1($a);$c = yuan_to_fen2($a);$d = yuan_to_fen3($a);$e = yuan_to_fen4($a);$x = yuan_to_fen31($a);$y = yuan_to_fen32($a);$z = yuan_to_fen33($a);echo('价格=' . $b . "\n");//2007echo('价格2=' . $c . "\n");//2007echo('价格3=' . $d . "\n");//2007echo('价格4=' . $e . "\n");//2008echo('方法31=' . $x . "\n");//2008echo('方法32=' . $y . "\n");//2008echo('方法33=' . $z . "\n");//2008function yuan_to_fen1($price){  return intval(100 * $price);}function yuan_to_fen2($price){  return floor(100 * $price);}function yuan_to_fen3($price){  return (int)(100 * $price);}function yuan_to_fen4($price){  return 100 * $price;}function yuan_to_fen31($price){  return intval(strval(100 * $price));}function yuan_to_fen32($price){  //返回浮点数。  return round(100 * $price);}function yuan_to_fen33($price){  //返回整型,比较推荐这种。  return intval(round(100 * $price));}

到此,相信大家对“PHP元转分的错误示范代码分析”有了更深的了解,不妨来实际操作一番吧!这里是恰卡编程网网站,更多相关内容可以进入相关频道进行查询,关注我们,继续学习!

收藏
分享
海报
0 条评论
13
上一篇:java fileinputstream中文乱码如何解决 下一篇:php curl301跳转如何处理

本站已关闭游客评论,请登录或者注册后再评论吧~

忘记密码?

图形验证码