10 2019 档案
php
摘要:php 中的Etag 关闭http链接 正则中文截断乱码 url 下载文件 composer phar php D:/phpbox/php/composer.phar install 代理 编辑配置文件 yii2 需要 require 开发版本 mysql测试连接 yii yii post yii 阅读全文
posted @ 2019-10-24 10:04 零度91 阅读(302) 评论(2) 推荐(0)
git 常用命令
摘要:git 不加入版本库 git update-index --assume-unchanged <要忽略的文件> git update-index --no-assume-unchanged <要取消忽略的文件> 修改git文件忽略 git rm -r --cached . git add . git 阅读全文
posted @ 2019-10-21 10:52 零度91 阅读(259) 评论(0) 推荐(0)
js 的一些代码
摘要:js 模拟下拉 window.scrollTo(0, document.body.scrollHeight) 获取dom全部样式 document.defaultView.getComputedStyle(document.querySelector('.ii')).backgroundImage 阅读全文
posted @ 2019-10-18 09:16 零度91 阅读(167) 评论(0) 推荐(0)
sublime
摘要:内部变量 $folder 当前项目文件 $file_path 当前文件所在路径, 比如 C:\Files. $file 当前文件的完整路径, 比如 C:\Files\Chapter1.txt. $file_name 当前文件的文件名, 比如 Chapter1.txt. $file_extension 阅读全文
posted @ 2019-10-18 09:14 零度91 阅读(205) 评论(0) 推荐(0)
mysql 常用的sql
摘要:##vim -- DBeaver Add vrapper repository http://vrapper.sourceforge.net/update-site/stable mysql 批量删除sql SELECT CONCAT( 'drop table we7.', table_name, 阅读全文
posted @ 2019-10-18 09:12 零度91 阅读(217) 评论(0) 推荐(0)
nginx 常用的配置
摘要:yii server { listen 80; server_name web.xxx.cn; root /home/wwwroot/xxx/web; access_log /home/wwwroot/error.log; error_log /home/wwwroot/error.log; ind 阅读全文
posted @ 2019-10-18 09:11 零度91 阅读(163) 评论(0) 推荐(0)
linux 常用命令
摘要:linux 查看公网连接ip curl ifconfig.me 同时监听多个文件 tail -f `find ./../logs/ -name *.out` 停止进程 ps -ef |grep php kill -9 4394 设置软连接 ln -sf /usr/local/nginx/sbin/n 阅读全文
posted @ 2019-10-14 08:54 零度91 阅读(352) 评论(0) 推荐(0)