随机文章
PHP涉及的所有英文单词

PHP涉及的所有英文单词

--------------------------------------html单词------------------------------------ html超文本标记语言  head 头部 font 字体 字形 i(italic) 倾斜,斜体字 big 大的,字体加大 hr 水平线 Pre(predefi...
利用 Github Action 和GoReleaser全自动编译发布多平台Release包

利用 Github Action 和GoReleaser全自动编译发布多平台Release包

摘要 使用github aciton 可以帮我们自动执行某些操作 那么我们就可以使用他来进行自动编译我们的程序 程序环境   Go: v1.18   需要编译平台: Macos,Linux,Windows 创建Action 找到Action菜单 搜索go 并且点击...
VUE3 中使用FlatPickr时间选择器组件

VUE3 中使用FlatPickr时间选择器组件

实际效果图如下: 首先安装:vue-flatpickr-component 时间选择器库 npm安装: npm install vue-flatpickr-component --save Yarn安装: yarn add vue-flatpickr-component <template> <div class="...
Golang 编译程序Docker内报错 runtime/cgo: pthread_create failed: Operation not permitted

Golang 编译程序Docker内报错 runtime/cgo: pthread_create failed: Operation not permitted

Docker运行Golang程序返回下面错误 runtime/cgo: pthread_create failed: Operation not permitted 解决方案 docker run 时增加特权模式 docker run --privileged
php 7.2 xdebug 3.0.1 跟 mysqli_affected_rows 冲突 导致返回 -1

php 7.2 xdebug 3.0.1 跟 mysqli_affected_rows 冲突 导致返回 -1

在php 7.2 中我之前使用 xdebug 2.x版本都还好 没出现过此问题 在xdebug 更新 3.x之后我也跟进更新了新版本  用了许久 我发现 mysqli_affected_rows  返回-1 导致逻辑错误  差了很久- - 不能...