上一页 1 ··· 6 7 8 9 10 11 12 13 14 ··· 17 下一页
摘要: https://www.php.cn/php-ask-451840.html laravel项目使用intervention/image插件也可以达到png转为jpg的效果使用其encode()方法 阅读全文
posted @ 2020-12-18 16:38 小林不会飞 阅读(163) 评论(0) 推荐(0) 编辑
摘要: win10快速解决警告:libpng warning: iCCP: known incorrect sRGB profile 1.我安装了Anaconda,QT等也都安装在了这里。 2.运行python程序总是报警告::libpng warning: iCCP: known incorrect sR 阅读全文
posted @ 2020-12-18 16:19 小林不会飞 阅读(20478) 评论(0) 推荐(1) 编辑
摘要: 导致该问题的原因在于没有配置curl.cainfo,该配置位于php.ini中。 解决方案: 1)下载cacert.pem https://curl.haxx.se/ca/cacert.pem 2)配置php.ini [curl]; A default value for the CURLOPT_C 阅读全文
posted @ 2020-12-13 10:45 小林不会飞 阅读(183) 评论(0) 推荐(0) 编辑
摘要: 1.可能是composer.lock中没有记录的第三方扩展,但是已经创建了服务提供者provider等, 2.在 vendor/laravel/framework/src/Illuminate/Foundation/PackageManifest.php文件中将 $installed = json_ 阅读全文
posted @ 2020-12-12 17:04 小林不会飞 阅读(12635) 评论(0) 推荐(1) 编辑
摘要: 后端 return response()->download(storage_path('app/public').$file,$filename,array( 'Content-Type' => 'application/pdf', )); 前端: downloadPage(id){ webSer 阅读全文
posted @ 2020-12-04 19:37 小林不会飞 阅读(1349) 评论(0) 推荐(0) 编辑
摘要: https://www.it610.com/article/1298498230232883200.htm $sellData = \DB::table('sells as s')->select([ 's.id', 's.amount', \DB::raw('"sell" as type'), ] 阅读全文
posted @ 2020-12-03 10:32 小林不会飞 阅读(1753) 评论(0) 推荐(0) 编辑
摘要: sql语句左链接left join--3张表关联 表A 关联第一张表B 关联第二张表c select * from 表名A left join 表B on 表A字段=表B的id left join 表c on 表A字段=表c的id 阅读全文
posted @ 2020-12-01 15:59 小林不会飞 阅读(2638) 评论(0) 推荐(0) 编辑
摘要: 今天写sql语句时,相对字符串类型的数字进行排序,怎么做呢? 需要先转换成数字再进行排序 1.直接用加法 字符串+0 eg: select * from orders order by (mark+0) desc eg: 以分类字段进行分组,获取分类总数amount,和qty(数量),最后以amou 阅读全文
posted @ 2020-11-30 11:36 小林不会飞 阅读(3202) 评论(0) 推荐(0) 编辑
摘要: $query->orderBy(\DB::raw('FORMAT(transaction_number*price,2)'),"desc"); 阅读全文
posted @ 2020-11-27 18:05 小林不会飞 阅读(269) 评论(0) 推荐(0) 编辑
摘要: PHP number_format() 函数 number_format():函数可以通过千位分组的形式来格式化数字。 语法: number_format(number,decimals,decimalpoint,separator) 参数: number:必需。要格式化的数字。decimals:可 阅读全文
posted @ 2020-11-27 14:35 小林不会飞 阅读(240) 评论(0) 推荐(0) 编辑
上一页 1 ··· 6 7 8 9 10 11 12 13 14 ··· 17 下一页