上一页 1 2 3 4 5 6 7 8 9 10 ··· 12 下一页
摘要: 项目初始化 为此,我们先初始化一个新的 Laravel 应用 thrift: laravel new thrift 在 thrift 项目根目录下新增一个 thrift 子目录,然后在该子目录下创建 Thrift IDL 文件 org.thrift,用于定义和用户相关的服务接口(语言为 PHP,命名 阅读全文
posted @ 2020-06-11 18:01 佚小名 阅读(759) 评论(0) 推荐(0) 编辑
摘要: /** * 求两个已知经纬度之间的距离,单位为米 * * @param lng1 $ ,lng2 经度 * @param lat1 $ ,lat2 纬度 * @return float 距离,单位米 * @author www.Alixixi.com */ function getdistance( 阅读全文
posted @ 2020-06-03 18:19 佚小名 阅读(246) 评论(0) 推荐(0) 编辑
摘要: 一、前方有坑 php在使用加减乘除等运算符计算浮点数的时候,经常会出现意想不到的结果,特别是关于财务数据方面的计算,给不少工程师惹了很多的麻烦。比如今天工作终于到的一个案例: $a = 2586; $b = 2585.98; var_dump($a-$b); 期望的结果是:float(0.02) 实 阅读全文
posted @ 2020-05-30 15:17 佚小名 阅读(571) 评论(0) 推荐(0) 编辑
摘要: 1,使用Composer安装依赖 在Laravel项目根目录下使用Composer安装依赖: composer require maatwebsite/excel ~2.1 ps:一定要加上~2.1!!!因为现在已经更新到3.0版本了,如果你不加的话,会安装最新的3.0版本!等运行时候就会报错,类似 阅读全文
posted @ 2020-05-28 16:50 佚小名 阅读(587) 评论(0) 推荐(0) 编辑
摘要: php curl CurlFile CURLOPT_POSTFIELDS 返回false (原因是 curl_file_create函数读取windows本地中文文件名失败); curl_file_create函数在使用的时候,windows默认编码是gbk,所以读取windows系统上中文文件会失 阅读全文
posted @ 2020-05-27 09:47 佚小名 阅读(465) 评论(0) 推荐(0) 编辑
摘要: select $select from hlyun_cost_vouchers left join (select VoucherId,BillId from hlyun_cost_index_vouchers_bills group by VoucherId) as hlyun_cost_inde 阅读全文
posted @ 2020-03-24 10:30 佚小名 阅读(759) 评论(0) 推荐(0) 编辑
摘要: 首先在nginx.conf中进行如下配置: 再把所有 fastcgi_pass 127.0.0.1:9000; 改为 fastcgi_pass phpfastcgi_proxy; server { listen 7000; server_name localhost; location / { ad 阅读全文
posted @ 2020-01-09 16:48 佚小名 阅读(1166) 评论(0) 推荐(0) 编辑
摘要: 调用方式 阅读全文
posted @ 2019-08-24 14:20 佚小名 阅读(508) 评论(0) 推荐(0) 编辑
摘要: $dataTempQuery = $dispatchCostPay->groupBy('costs.ID')->union($orderCostPay->groupBy('costs.ID')); $data = \DB::table(\DB::raw("({$dataTempQuery->toSql()}) as t"))->groupBy('ID')->skip($skip)->limit(... 阅读全文
posted @ 2019-07-10 12:00 佚小名 阅读(1142) 评论(2) 推荐(0) 编辑
摘要: 解决办法: 添加过滤cookie key 阅读全文
posted @ 2019-03-26 14:29 佚小名 阅读(774) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 9 10 ··· 12 下一页