Blogger Information
Blog 16
fans 0
comment 1
visits 13089
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
php中数据类型常用的函数及注意事项
IT浪子走天涯
Original
786 people have browsed it

永久性强制类型转换  settype($age,'string');

强制类型转换  $newAge = (string)$age;  $age的类型不变

获取变量的类型  gettype();

is_string  

单字符串的'0'可以转为false;( bool ) ' 0 ';

intval(); 建议不在使用强制类型转换,intval('php') == 0;intval('35php') == 35; 不会四舍五入

四舍五入 用 round(123.65);

floatval(true) == 1;

浮点数之间的比较  两个浮点数的差 与 定义的极小值相互比较

heredoc 相当于双引号  会解析变量

nowdoc 相当于单引号 不会解析变量

索引数组 关联数组

unset(); 用来删除数组元素 或者 删除整个数组

array_values($arr); 重建数组索引;

call_user_func( $obj->fun );  调用匿名函数,函数不需要括号,作为属性的方式引用。



Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post