分享地址 Thinkphp6手册: https://www.kancloud.cn/manual/thinkphp6_0/1037488 Thinkphp5手册: https://www.kancloud.cn/manual/thinkphp5_1/353955 ...
分类:
Web程序 时间:
2020-01-27 12:27:57
阅读次数:
383
盗用的翻译,哈哈哈!白嫖就完事了。 题目: 密西西比河岸某处陆地因为河水侵蚀,每年陆地面积都在减少,每年减少50平方英里,减少的陆地面积呈半圆形,即该半圆形面积以每年50平方英里的速度增长。在第一年初时,该半圆形面积为0,半圆形的圆心坐标为(0,0),现在的任务是给定一个坐标,求出该坐标在哪一年年底 ...
分类:
编程语言 时间:
2020-01-26 19:08:08
阅读次数:
80
V5.0.17+版本开始,当你的order排序中使用了SQL函数的时候,请使用orderRaw方法替代order,例如: Db::table('think_user')->where('status=1')->orderRaw('rand()')->limit(5)->select(); Db::n ...
分类:
编程语言 时间:
2020-01-23 12:24:48
阅读次数:
134
RxJS is a library for composing asynchronous and event-based programs by using observable sequences. It provides one core type, the Observable, satell ...
分类:
Web程序 时间:
2020-01-21 16:08:30
阅读次数:
133
<?php namespace page; use think\Paginator; class Page extends Paginator { //首页 protected function home() { if ($this->currentPage() > 1) { return "<a ...
分类:
其他好文 时间:
2020-01-20 11:19:20
阅读次数:
113
ThinkPHP 5.x远程命令执行 Date 2018年末 影响范围 5.x < 5.1.31, <= 5.0.23 Order by 注入漏洞 Date 2018.8 影响范围 v3<=ThinkPHP 3.2.3 v5<=5.1.22 ...
分类:
Web程序 时间:
2020-01-16 23:57:13
阅读次数:
237
1.并发 2.基础 3.访问共享资源 4.终结任务 5.线程协作 6.错失信号 7.死锁 8.其他工具 以上来自《think in java》 ...
分类:
编程语言 时间:
2020-01-14 10:08:44
阅读次数:
82
IntroductionRabbitMQ is a message broker: it accepts and forwards messages. You can think about it as a post office: when you put the mail that you wa... ...
分类:
其他好文 时间:
2020-01-11 18:48:55
阅读次数:
94
//新闻点赞public function praise(){ if (!is_login()) { $this->returnBack(2, '请先登录'); } $id = I('post.jour_id'); //新闻id $type = I('post.type'); //点赞状态 $art ...
分类:
其他好文 时间:
2020-01-11 15:01:49
阅读次数:
75
一、概要 用户体验设计就是“以用户为中心的设计”,即创造“每件事都按照正确的方式在工作”的用户体验,让用户宾至如归,就像《Don’t make me think》里提到的“这会让用户觉得自己更聪明,更能把握全局,这会让他们成为老用户”。Garrett 大师围绕“以用户为中心的设计”得出一套产品设计的 ...
分类:
其他好文 时间:
2020-01-11 13:25:25
阅读次数:
91