上一页 1 2 3 4 5 6 7 8 ··· 75 下一页
摘要: 1:打开php.ini2:opcache.enable=1改为opcache.enable=0即可 阅读全文
posted @ 2023-12-06 16:51 浮尘微光 阅读(46) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2023-12-05 15:44 浮尘微光 阅读(455) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/rghanbing4/article/details/51284131 <pre name="code" class="php"><pre name="code" class="php"><?php $arr = array( array('id' => 阅读全文
posted @ 2023-11-26 15:37 浮尘微光 阅读(6) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/hudeyong926/article/details/99540733 安装supervisor #检查是否已经安装 supervisord --version #安装pip yum install -y epel-release yum install 阅读全文
posted @ 2023-11-13 11:25 浮尘微光 阅读(77) 评论(0) 推荐(0) 编辑
摘要: 修改 /etc/mysql/mysql.conf.d/mysqld.cnf,增加: sql_mode='ERROR_FOR_DIVISION_BY_ZERO,NO_AUTO_CREATE_USER,NO_ENGINE_SUBSTITUTION' 然后重启mysql即可 阅读全文
posted @ 2023-11-07 14:56 浮尘微光 阅读(41) 评论(0) 推荐(0) 编辑
摘要: 本次出现这个错误是因为本地提交了commit但是未push成功,所以使用git pull --rebase,由于远程仓库和本地的commit有冲突,Git无法自动解决冲突时,会切换到一个匿名分支,然后使用git branch发现报错“no branch, rebasing master”。 解决办法 阅读全文
posted @ 2023-10-30 12:04 浮尘微光 阅读(1564) 评论(0) 推荐(0) 编辑
摘要: 1、json对象 1.1、方法 使用对象操作的方法进行查询:字段->'$.json属性' 使用函数进行查询:json_extract(字段, '$.json属性') 获取JSON数组/对象长度:JSON_LENGTH() 1.2、数据 CREATE TABLE `test` ( `id` bigin 阅读全文
posted @ 2023-10-17 16:42 浮尘微光 阅读(1765) 评论(0) 推荐(0) 编辑
摘要: linux cron是不到秒的。 crontab参数列表-e #编辑定时任务-l #查看定时任务(其实没用,相当于cat)-r #删除定时任务-u #指定其他用户 常用的是crontab -e;表示编辑定时任务。 crontab -e 和 vim /etc/crontab的区别这两种都是编辑定时任务 阅读全文
posted @ 2023-10-17 16:22 浮尘微光 阅读(276) 评论(0) 推荐(0) 编辑
摘要: 1.下载Navicat15 1 wget https://download.navicat.com.cn/download/navicat15-premium-cs.AppImage 2.文件处理 1 2 3 4 5 navy@DEEPIN:~/Desktop$ mkdir navicat15-pr 阅读全文
posted @ 2023-09-26 10:34 浮尘微光 阅读(1286) 评论(1) 推荐(1) 编辑
摘要: 在Deepin中 php7.2 遇到问题: Uncaught Error: Call to undefined function bcdiv()1bcdiv函数的作用(点我查看) 原因是因为缺少了PHP的 bcmath 扩展,导致电脑无法识别该函数。 解决办法: 1、查看当前php版本 PHP -v 阅读全文
posted @ 2023-09-25 10:28 浮尘微光 阅读(223) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 ··· 75 下一页