摘要:
恢复相关git checkout -- file可以丢弃工作区的修改:git reset HEAD file可以把暂存区的修改撤销掉(unstage),重新放回工作区:git reset --hard commit_id 在版本的历史之间穿梭git reset --hard HEAD^ 上一个版本 阅读全文
摘要:
一、安装JDK sudo apt-get install openjdk-8-jdk 二、软件下载地址 zookeeper: https://archive.apache.org/dist/zookeeper/zookeeper-3.5.7/apache-zookeeper-3.5.7-bin.ta 阅读全文
摘要:
终端配置代理函数 function proxy_on() { export http_proxy=http://127.0.0.1:xxxx export https_proxy=http://127.0.0.1:xxxx echo "已开启代理" } function proxy_off() { 阅读全文
摘要:
ngx.arg ngx.var.VARIABLE Core constants HTTP method constants HTTP status constants Nginx log level constants print ngx.ctx ngx.location.capture ngx.l 阅读全文
摘要:
最近需要快速的搭建环境来进行一些问题的验证,发现ubuntu并不支持直接使用apt-get来安装php7.1版本,需要通过其他的方法来进行,下面记录一下。 阅读全文
摘要:
简要说明 php.ini文件的修改 [xdebug];断点调试xdebug.remote_enable=On ;远程调试xdebug.remote_autostart=On ;开启远程调试自动启动xdebug.remote_host=192.168.33.1xdebug.remote_port=90 阅读全文
摘要:
preg_match && preg_match_all preg_match : preg_match()在第一次匹配后 将会停止搜索preg_match_all : 在第一个匹配找到后, 子序列继续从最后一次匹配位置搜索 ?=... 正先行断言 正先行断言, 表示第一部分表达式之后必须跟着"(T 阅读全文