WebLinuxStudy

导航

 
上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 20 下一页

2022年1月13日

摘要: 关于 Laravel项目多进程队列配置的使用 https://segmentfault.com/a/1190000021165798 阅读全文
posted @ 2022-01-13 12:31 WebLinuxStudy 阅读(352) 评论(0) 推荐(0) 编辑
 

2021年12月10日

摘要: http://www.360doc.com/content/18/0322/10/9200790_739224029.shtml https://blog.csdn.net/u012764358/article/details/62886427 阅读全文
posted @ 2021-12-10 14:22 WebLinuxStudy 阅读(89) 评论(0) 推荐(0) 编辑
 

2021年7月12日

摘要: MYSQL向上取整、向下取整和四舍五入 1.MYSQL向上取整SELECT CEIL(1.2) 2.MYSQL向下取整SELECT FLOOR(1.2) 3.MYSQL四舍五入SELECT ROUND(1.355, 2) 阅读全文
posted @ 2021-07-12 17:43 WebLinuxStudy 阅读(1335) 评论(0) 推荐(0) 编辑
 

2021年6月18日

摘要: 第一种方法:find / -name php.ini 第二种方法:php --ini 第三种方法:php -i |grep php.ini //php -i其实就是输出phpinfo 阅读全文
posted @ 2021-06-18 16:39 WebLinuxStudy 阅读(78) 评论(0) 推荐(0) 编辑
 

2021年6月9日

摘要: laravel打印完整SQL语句 用DB自带的getQueryLog方法直接打印: //开启QueryLogDB::connection()->enableQueryLog(); \App\User::find(1); dump(DB::getQueryLog()); 阅读全文
posted @ 2021-06-09 17:46 WebLinuxStudy 阅读(54) 评论(0) 推荐(0) 编辑
 

2021年4月30日

摘要: 提示:识别效果不是特别好 from PIL import Imageimport pytesseractimport easyguiimport os # 选择文件对话框path = easygui.fileopenbox() print(path) # 识别文字text = pytesseract 阅读全文
posted @ 2021-04-30 13:01 WebLinuxStudy 阅读(328) 评论(0) 推荐(0) 编辑
 
摘要: https://blog.csdn.net/qq_36789311/article/details/102585927 阅读全文
posted @ 2021-04-30 11:48 WebLinuxStudy 阅读(101) 评论(0) 推荐(0) 编辑
 
摘要: import easygui # 选择文件对话框 fileName = easygui.fileopenbox()print(fileName) 阅读全文
posted @ 2021-04-30 11:32 WebLinuxStudy 阅读(1107) 评论(0) 推荐(0) 编辑
 

2021年4月20日

摘要: import re str = 'abc def gh ijk' strAfter = re.sub(' +', '', str) print(strAfter) 阅读全文
posted @ 2021-04-20 17:51 WebLinuxStudy 阅读(1869) 评论(0) 推荐(0) 编辑
 

2021年3月31日

摘要: docxtpl 一个很强大的包,其主要通过对docx文档模板加载,从而对其进行修改。 安装pip install docxtpl 使用说明:1.手动创建word模板文件 my_word_template.docx2.word模板文件中替换的变量用{{}}扩上,本例中用到{{title1}},{{ti 阅读全文
posted @ 2021-03-31 15:20 WebLinuxStudy 阅读(496) 评论(0) 推荐(0) 编辑
 
上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 20 下一页