- 博客(9)
- 资源 (2)
- 收藏
- 关注
原创 php使用dblib连接sql server时freetds版本选择
sql server版本sql server版本free tds 版本6.x4.27.07.020007.120057.220087.3 sql server版本:参考链接:http://www.freetds.org
2016-04-15 18:36:50
649
原创 git常用命令
初始化版本库:git init把文件添加到版本库:git add 文件名提交文件:git commit -m "blabla...."查看版本库状态:git status查看文件内容修改:git diff 文件名查看日志git log --pretty=oneline回退版本git reset --hard HEAD[^]| commit id记录用过的每一个命令git reflog
2016-04-11 18:23:00
304
转载 git学习笔记
这个周末用两天好好学习了git的相关命令,主要参考的是廖学峰老师的网站,十分感谢廖学峰老师。以下是我学习的时候记的一些笔记,一些内容都是直接将内容摘过来,其他的是我自己在电脑上操作后综合了解的知识总结出来的。 在这把廖老师的博客地址贴出来。 http://www.liaoxuefeng.com/wiki/0013739516305929606dd18361248578c67b8067c8c017
2016-04-10 18:31:12
730
原创 mysql小笔记
1.基本命令1.1 grant命令1.1.1 基本格式:grant 权限 on 数据库对象 to 用户@用户地址 identified by '连接口令(密码)'例如:grant 普通数据用户,查询,插入,更新,删除数据库中所有表数据的权利grant select,insert,update delete on testdb.tc(testdb.*) to common_user@'%'gran
2016-04-04 14:45:51
359
原创 mac问题小笔记
You have not agreed to the Xcode license agreements的解决方案最近使用Jenkins做iOS项目的CI时,遇到了下面的问题:You have not agreed to the Xcode license agreements, please run xcodebuild standalone from within a Termi
2016-03-31 19:14:22
2150
原创 yaf的nginx的rewrite
在yaf的文档里面,nginx的rewrite是以下:server { listen ****; server_name domain.com; root document_root; index index.php index.html index.htm; if (!-e $request_filename) { rewrite ^/(.*) /in
2015-10-14 09:34:16
2625
原创 centos下nginx的安装
./configure --disable-shared make[2]: 进入目录“/home/cookie/placeOfConfigure/pcre-8.36”CDPATH="${ZSH_VERSION+.}:" && cd . && /bin/sh /home/cookie/placeOfConfigure/pcre-8.36/missing aclocal-1.14 -I m4/h
2015-09-07 18:47:04
1026
原创 CentOS下安装mcrypt库
我又来找虐了,在mac上弄完php的环境现在开始在centOS上装php7的环境玩。。。在装mcrypt环境之前需要安装libmcrypt库,libmcrypt库安装挺简单,直接用源码包./configure --prefex=/usr/local/libmcrypt -》make->sudo make install就ok了,接下来安装mcrypt库才是重点。(--prefex表示安装路径)
2015-09-06 17:18:54
846
原创 mac编译安装php扩展
公司的数据库是sql server的,但mac自带的php默认是木有mssql这个扩展的(后来发现还木有mcrypt.so这个扩展).以下的安装均需要安装xCode首先安装libmcrypt.so这个扩展。先到这里 去下载libmcrypt的tar.gz包,解压以后进入目录分别执行./configure --disable-posix-threads --enable-static
2015-08-30 12:23:42
2807
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人