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