摘要: // string substr ( string $string , int $start [, int $length ] ) //返回字符串 string中由 start 和 length 参数指定的子字符串,失败返回false //length是可选参数,当length为 null 0 false时,返回结果为"",length不填截取从start开始到字符串尾 $rest = sub... 阅读全文
posted @ 2017-08-03 17:59 mvvp 阅读(841) 评论(0) 推荐(0) 编辑
摘要: //向下取整:获取小于$val最近的整数echo floor(4.3); // 4 echo floor(9.999); // 9 echo floor(-3.14); // -4 echo floor(-0.1);//-1 //四舍五入,第二个参数为精度(可以为负数) echo round(0.1);//0 echo round(-3.6); // -4 echo ro... 阅读全文
posted @ 2017-08-03 14:07 mvvp 阅读(162) 评论(0) 推荐(0) 编辑