个人实践流程清单 1. Alpha版本冲刺个人在SCRUM团队任务清单: | 时间 | 我这个三天做了什么 | 实际解决燃尽图项目数量 |我遇到了什么问题|我下一个三天要做什么|预计下三天完成燃尽图项目数量 : : | : : | : : | : : | : : | : : | 2019.10.9 ...
分类:
其他好文 时间:
2019-12-02 17:06:15
阅读次数:
86
1.首先进入phpstudy的www目录 composer create-project topthink/think=5.0 pt5.0的名字 --prefer-dist 然后就可以下载成功了 注意:必须要有网络,要有网络,要有网络!!!!!!!!! ...
分类:
其他好文 时间:
2019-12-02 16:54:32
阅读次数:
80
ThinkPHP采用 01-think\facade\Cookie类提供Cookie支持。 02-think\Cookie 配置文件位于 config/cookie.php中,一般会配置一个超时时间。 session 配置文件位于 config/session.php中 ...
分类:
Web程序 时间:
2019-12-02 00:44:13
阅读次数:
162
创建迁移类,首字母必须为大写 php think migrate:create Users 可以看到目录下有新文件 .\database\migrations\20161117144043_users.php 使用实例 <?php use Phinx\Migration\AbstractMigrat ...
分类:
Web程序 时间:
2019-12-01 20:51:03
阅读次数:
179
If you think technology can solve your security problems, then you don't understand the problems and you don't understand the technology
... ...
分类:
编程语言 时间:
2019-12-01 19:01:53
阅读次数:
131
01-【推荐方式】 当浏览器向Web服务器发出请求时,它向服务器传递了一个数据块,也就是请求信息。在Thinkphp5.1中,获取请求对象数据,是由think\Request类负责,在很多场合下并不需要实例化调用,通常使用依赖注入即可, 02-在其它场合(例如模板输出等)则可以使用think\fac ...
分类:
Web程序 时间:
2019-11-30 19:26:33
阅读次数:
107
ESP8266的ota升级由于涉及到不同的flash空间大小,以及新旧版本的不同,所以流程相对比较复杂。笔者这个倒腾的时间还是有一些的,不过,总归把事情解决了。下面记录一下基本的流程和遇到的问题。 还有一个问题,就是RTOS版本上面的ota升级和以前的很多是不同的,这也是让我倒腾那么长时间的原因之一 ...
分类:
其他好文 时间:
2019-11-28 18:58:22
阅读次数:
366
把user_id username 存入session中 首先在文件中引入 use think\Session; Session::set("mid",$userData["user_id"]); Session::set("mname",$userData["username"]); 在控制器中拿 ...
分类:
其他好文 时间:
2019-11-25 11:08:52
阅读次数:
52
前几天看到一个关于测试的观点。 We are capable of creating software systems that we are not cable of fully understanding. Therefore we test. We test to help us think ...
分类:
其他好文 时间:
2019-11-22 10:38:41
阅读次数:
85
当我们解压安装包后,在主目录下有以下文件目录,在这里就不一一介绍,主要介绍一些会经常使用到的文件或目录 1.bin目录——存放启动脚本、配置文件、模板等文件 examples:该目录下存放Jmeter官方给的请求模板 report-template:该目录下存放Jmeter的报告模板 templat ...
分类:
其他好文 时间:
2019-11-16 21:39:11
阅读次数:
79