PHP
123cun1
没啥好说的
展开
-
PHP的float转int精度问题
地址:http://php.net/manual/zh/language.types.integer.php<?phpecho (int) ( (0.1+0.7) * 10 ); // 显示 7!?>由于浮点数的精度问题,导致0.1+0.7=0.799999...,×10之后得7.9...,float转换成int时去掉尾数取整,所以结果为7。...原创 2018-03-27 21:48:31 · 1791 阅读 · 0 评论 -
解决Fatal error: Maximum execution time of 10 seconds exceeded in XXX.php
使用set_time_limit(int second)函数, 接收一个参数即秒数, 例如set_time_limit(10)//表示PHP最长运行时间为10s, 超过则报错如果想无限运行而不报错, 则传参数0, 例如set_time_limit(0)//表示PHP无限运行下去, 直至程序结束...原创 2018-05-17 10:38:05 · 857 阅读 · 0 评论 -
php字符串(含中文)转二进制串代码
<?phpheader("charset=utf-8;");function StrToBin($str){ //1.列出每个字符 $arr = preg_split('/(?<!^)(?!$)/u', $str); //2.unpack字符 foreach($arr as &$v){ $temp = unpack('H*'...原创 2018-05-11 09:34:03 · 4103 阅读 · 0 评论 -
php异步简单实现
转载: http://www.jb51.net/article/120716.htm原创 2018-05-07 15:17:51 · 1504 阅读 · 0 评论