#两个高精度数比较

#int bccomp ( string $left_operand , string $right_operand [, int $scale ] )

#$left=$right 返回 0

#$left<$right 返回 -1

#$left>$right 返回 1

#$scale 小数点位数

#两个高精度数相加

#string bcadd ( string $left_operand , string $right_operand [, int $scale ] )

#$scale 返回的小数点个数

#两个高精度数相减

#sstring bcsub ( string $left_operand , string $right_operand [, int $scale ] )

#$scale 返回的小数点个数

#两个高精度数求余/取模

#string bcmod ( string $left_operand , string $modulus )

#两个高精度数相除

#string bcdiv ( string $left_operand , string $right_operand [, int $scale ] )

#$scale小数点位数默认为 0

#两个高精度数相乘

#string bcmul ( string $left_operand , string $right_operand [, int $scale ] )

#$scale小数点位数默认为 0

#两个高精度数的次方值

#string bcpow ( string $left_operand , string $right_operand [, int $scale ] )

#$scale小数点位数默认为 0

#求高精度数的平方根

#string bcsqrt ( string $operand [, int $scale ] )

#$scale小数点位数默认为 0

#设置bc函数的小数点位数

#bool bcscale ( int $scale )

#$scale小数点位数默认为 0

最新文章

  1. Linux C 信号 pause、sigsuspend 的相同与区别
  2. oracle当前的连接数
  3. LeetCode122:Best Time to Buy and Sell Stock II
  4. JavaScript继承与原型链
  5. HDU 4622 Reincarnation 后缀自动机
  6. C# 多线程处理相关说明: WaitHandle,waitCallback, ThreadPool.QueueUserWorkItem
  7. 广州Uber优步司机奖励政策(2月1日~2月7日)
  8. Qt入门(15)——使用窗口部件
  9. 经典:十步完全理解 SQL
  10. javascript启示录英文单词生词
  11. backbonejs mvc框架
  12. [数据结构]C语言链表实现
  13. 联合查询到gridview
  14. Struts源码之OgnlValueStack
  15. Shell Scripts - 循环while,until,for
  16. jmeter之关联
  17. select下拉框的数据回显
  18. curl 命令简介
  19. backbone学习笔记:模型(Model)(1)基础知识
  20. java类中成员的初始化顺序(一)

热门文章

  1. android通过USB使用真机调试程序
  2. JS取date的前一天时间
  3. 什么是RESTfull?理解RESTfull架构【转】
  4. MDK5在调试中崩溃,提示“IDE已停止工作”
  5. USB的中断说明
  6. [转]Hspice 语法手册
  7. mac下安装mysqlcient 报错
  8. Hadoop: Setup Maven project for MapReduce in 5mn
  9. Java 小数类 及四舍五入的方法 精度非常高的小数时用
  10. 用javascript获得地址栏参数的两种方法