php
Victor-Bai
make our life beauty
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
MySQL8.0错误
QLSTATE[HY000] [2054] The server requested authentication method unknown to the client 搜索了下应该是 MySQL 8默认使用了新的密码验证插件:caching_sha2_password ,而有些 PHP 版本不支持这个问题造成的 解决办法: 修改登录用户的 plugin 为 mysql_native_password mysql -uroot -p use mysql; ALTER原创 2021-10-22 15:00:19 · 183 阅读 · 0 评论 -
php使用ZipArchive自动解压项目压缩包到服务器代码
php使用ZipArchive自动解压项目压缩包到服务器代码 $randStr = str_shuffle('ABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890'); $rand = substr($randStr,0,6); $dir = 'program'.$rand.'/'; $zipName = 'storage\测试文档.zip'; $zip = new \ZipArchive(); $res = $zip->open($zipName); if ($res != .原创 2021-03-23 14:31:21 · 249 阅读 · 0 评论
分享