Blogger Information
鱼的熊掌
Blog
51
fans
0
comment
1
visits
65817
integral:0
P beans:102
  • List of blog posts
  • Dcoker运行mysql5.7镜像

    // 下载mysql5.7镜像docker pull mysql:5.7// 运行镜像docker run -d --name mysql57 -p 13306:3306 -v e:/Cache/docker/mysql57:/var/lib/mys...

    2023-07-18 09:28 Read 951 comment 0
  • PHP导出Excel

         set_time_limit(0);      ini_set('memory_limit', '1024...

    2022-05-10 09:06 Read 934 comment 0
  • MYSQL主从配置

        注:两天服务器mysql版本最好一致 主库操作            1...

    2022-05-11 14:48 Read 919 comment 0
  • PhpWord生成word文件

    1、通过模板生成,最好使用.docx的文件生成否则会有权限问题 word内容 //模板的路径 $path='./Public/File/模板.docx'; //生成wo...

    2022-09-26 16:32 Read 908 comment 0
  • GIT生成ssh秘钥windows

        1、在Git Bash Here 打开命令窗口        ssh-keygen -t&n...

    2022-05-31 10:01 Read 887 comment 0
  • Nodejs切换镜像源

    windows命令界面输入 npm config set registry https://registry.npm.taobao.org

    2022-07-20 12:00 Read 847 comment 0
  • GIT切换远程仓库地址

        1、删除远程仓库连接 git remote rm origin     2、git remote ad...

    2022-05-11 16:31 Read 834 comment 0
  • Uniapp上拉加载数据

    2023-01-31 16:06 Read 775 comment 0
  • GIT命令大全

         设置用户信息    git config --global user.name "你的名称"   g...

    2022-08-17 11:05 Read 745 comment 0
  • Windows查看服务器内存CPU信息

    cmd命令行运行 msinfo32

    2022-07-28 10:05 Read 727 comment 0
  • 递归创建文件夹

    function createDirectory($dir) { $dir=ltrim($dir,'./'); $arr = explode('/',$dir); $path='./'; fo...

    2023-02-08 14:04 Read 708 comment 0
  • 强制360浏览器使用极速内核

    2023-02-09 10:20 Read 618 comment 0
  • Mysql触发器

        1、删除 在base_student表设置触发器,删除学生时触发删除wx_student的数据         ...

    2022-06-06 17:01 Read 608 comment 0
  • 企业微信局校互联应用登录弹出机构选择

    //生成授权链接 scope不能使用 静默授权:snsapi_base 使用手动授权:snsapi_privateinfo 或者 snsapi_userinfo'https://open.weixin.qq.com/connect/oauth2/au...

    2022-08-29 15:52 Read 565 comment 0
  • PHPExcel导出证件号问题

    证件号码格式会转成科学计数,添加转义符 "\t",如下$PHPExcel->getActiveSheet()->setCellValue(A1, '证件号码'."\t");

    2022-09-02 16:54 Read 489 comment 0