上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 36 下一页
摘要: MAC中chrome常用快捷键 标签页和窗口快捷键 Command + N 打开新窗口。 Command + T 打开新标签页。 Command + Option + 右箭头 切换到下一个标签页。 Command + Option + 左箭头 切换到上一个标签页。 Command + W 关闭当前标 阅读全文
posted @ 2022-09-11 15:52 胡勇健 阅读(2470) 评论(0) 推荐(0)
摘要: MAC快捷键大全 通用 Command + A 全选(All) Command + C 拷贝(Copy) Command + V 粘贴 Command + Z 撤销 Command + X 剪切 Command + S 保存(Save) Command + F 查找(Find) 系统 Command 阅读全文
posted @ 2022-09-11 15:51 胡勇健 阅读(1026) 评论(0) 推荐(0)
摘要: phpstorm mac快捷键 全局 Command + , 打开设置窗口 Command + 2 打开书签窗口 Command + 6 打开问题窗口 Command + 9 打开版本控制器窗口 Option + shift + I 打开项目描述 双击shift 弹出小浮窗搜索所有 Control+ 阅读全文
posted @ 2022-09-11 15:51 胡勇健 阅读(784) 评论(0) 推荐(0)
摘要: linux ssh隧道 隧道是一种把一种网络协议封装进另外一种网络协议进行传输的技术。这里我们研究ssh隧道,所以所有的网络通讯都是加密的。又被称作端口转发,因为ssh隧道通常会绑定一个本地端口,所有发向这个端口端口的数据包,都会被加密并透明地传输到远端系统。 一、本地转发 使用场景: 本地内网Li 阅读全文
posted @ 2022-09-07 02:39 胡勇健 阅读(915) 评论(0) 推荐(0)
摘要: 模板基本使用 控制器 application/index/controller/index.php <?php namespace app\index\controller; use think\Controller; class Index extends Controller { public 阅读全文
posted @ 2021-11-02 15:39 胡勇健 阅读(253) 评论(0) 推荐(0)
摘要: 安装图片处理类库 composer require topthink/think-image 打开图片 $image = \think\Image::open('./image.png'); $image = \think\Image::open(request()->file('image')); 阅读全文
posted @ 2021-11-01 01:55 胡勇健 阅读(335) 评论(0) 推荐(0)
摘要: thinkphp版本 5.0.24 安装验证码库 composer require topthink/think-captcha=1.0.8 captcha_img()方法修改 vendor\topthink\think-captcha\src\helper.php function captcha 阅读全文
posted @ 2021-11-01 01:14 胡勇健 阅读(222) 评论(0) 推荐(0)
摘要: 单文件上传 控制器 application/index/index.php <?php namespace app\index\controller; use think\Controller; class Index extends Controller { public function ind 阅读全文
posted @ 2021-11-01 00:45 胡勇健 阅读(375) 评论(0) 推荐(0)
摘要: 用法 控制器 <?php namespace app\index\controller; use think\Controller; class Index extends Controller { public function index() { $users = model('user')-> 阅读全文
posted @ 2021-11-01 00:32 胡勇健 阅读(74) 评论(0) 推荐(0)
摘要: 多语言配置 config.php 默认语言 'default_lang' => 'zh-cn', 开启语言切换 'lang_switch_on' => true, 英文包 application/lang/en-us.php <?php return [ 'title' => 'Title', 'l 阅读全文
posted @ 2021-11-01 00:10 胡勇健 阅读(262) 评论(0) 推荐(0)
上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 36 下一页