笔记
IT-Andy
这个人很懒,什么也没有留下!
展开
-
php下安装mongodb扩展
1、通过phpinfo()查看你的compiler、Thread Safety(线程)是安全版本、及操作系统情况同时,也可以看出现在没有mongodb扩展2、下载对应得php_mongodb.dll文件下载地址:https://windows.php.net/downloads/pecl/releases/mongodb/3、将下载下来的zip压缩包解压,有如下文件4、将php_mongodb.dll 文件复制到对应php安装目录下的ext目录下,我的路径:D:\phpstu原创 2020-12-01 18:50:48 · 476 阅读 · 0 评论 -
Git常用命令及常见异常处理
Git常用命令:查看分支:git branch创建分支:git branch 分支名切换分支:git checkout 分支名创建+切换分支:git checkout –b 分支名合并某分支到当前分支:git merge 分支名取消合并(本地):git rebase --abort取消合并(远程):git merge --abort删除分支:git branch –d 分支名强制提交:git push -f将本地代码保存到暂存区:git stash(全部) / git stash 文件.原创 2020-06-28 14:12:37 · 371 阅读 · 0 评论 -
编程常用笔记
1、免费模板网站2、json在线3、连接Windows服务器管理:mRemoteNG 下载地址4、java所需的jar包,下面2个网址配合使用: https://search.maven.org/ https://mvnrepository.com/artifact/pom.xml中的groupId/pom.xml中的artifactId/版本5、易...原创 2019-12-23 15:47:27 · 658 阅读 · 0 评论