Home > php教程 > php手册 > body text

PHP Cookbook读书笔记 – 第02章数字

WBOY
Release: 2016-06-06 19:40:34
Original
1435 people have browsed it

第二章主要介绍了PHP如何处理 数字 ,包括了开发中经常使用的小数取舍、 数字 格式化、大 数字 处理,同时还用了不少章节介绍科学计算及高精度计算需要用到的函数 is_numeric() : 判断一个变量或值是否是合法的 数字 类型 abs() : 返回绝对值 round() : 四舍

PHP Cookbook读书笔记 – 第02章数字第二章主要介绍了PHP如何处理数字,包括了开发中经常使用的小数取舍、数字格式化、大数字处理,同时还用了不少章节介绍科学计算及高精度计算需要用到的函数
is_numeric() : 判断一个变量或值是否是合法的数字类型
abs() : 返回绝对值
round() : 四舍五入
ceil() : 取大
floor() : 取小

PHP Cookbook读书笔记 – 第02章数字
range() : 取一个范围内的数,返回一个数组。还可以取范围内的字符数组
mt_rand() : 随机数,可设置取值范围
exp() : 取对数(略过)
pow() :计算指数(略过)
number_format() : 数字格式化,可设置取小数点后的位数,小数点的表示,千分位的表示
setlocale() : 本地化设置,在后面有一个章节会专门介绍
money_format() : 货币格式化,需要本地化设置的支持
sin() : 三角函数之正弦
cos() : 三角函数之反弦
tan() : 三角函数之正切
deg2rad() : 角度转弧度
rad2deg() : 弧度转角度
BCMath() : 高精度计算的函数库
GMP() : 同上
big_int() : PEAR包里的高精度技术库
base_convert() : 2、8、10、16进制转换函数

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template