上一页 1 ··· 12 13 14 15 16 17 18 19 20 ··· 22 下一页
该文被密码保护。 阅读全文
posted @ 2020-03-04 16:48 X__cicada 阅读(1) 评论(0) 推荐(0)
摘要: SQL分类 DDL Data Ddfinition Language 数据定义语言 create ,drop, DML Data Manipulation Language 数据操作语言 select insert delete update TPL Transaction Control Lang 阅读全文
posted @ 2020-02-26 20:38 X__cicada 阅读(135) 评论(0) 推荐(0)
摘要: {$add_time|date="Y-m-d H:i"} 阅读全文
posted @ 2020-01-20 15:07 X__cicada 阅读(1970) 评论(0) 推荐(0)
摘要: <?php namespace page; use think\Paginator; class Page extends Paginator { //首页 protected function home() { if ($this->currentPage() > 1) { return "<a 阅读全文
posted @ 2020-01-20 10:58 X__cicada 阅读(605) 评论(0) 推荐(0)
摘要: $keyword = $this->request->param('keyword'); if(cookie('keyword')){ $history = explode(',',cookie('keyword')); array_unshift($history,$keyword); $hist 阅读全文
posted @ 2020-01-19 14:43 X__cicada 阅读(294) 评论(0) 推荐(0)
摘要: CGI是为了保证web server传递过来的数据是标准格式的,它是一个协议,方便CGI程序的编写者. FastCGI是CGI更高级的一种方式,是用来提高CGI程序性能的. web server 如nginx只是内容的分发者.比如 如果请求/index.html 那么web server会去文件系统 阅读全文
posted @ 2020-01-15 19:06 X__cicada 阅读(161) 评论(0) 推荐(0)
摘要: create user qiepian identified by 'Qiepian123@' grant all on shop.* to 'qiepian'@'%'; flush privileges; 阅读全文
posted @ 2020-01-14 17:35 X__cicada 阅读(175) 评论(0) 推荐(0)
摘要: //eg1layer.msg('只想弱弱提示');//eg2layer.msg('有表情地提示', {icon: 6}); //eg3layer.msg('关闭后想做些什么', function(){ //do something}); //eglayer.msg('同上', { icon: 1, 阅读全文
posted @ 2020-01-09 14:37 X__cicada 阅读(594) 评论(0) 推荐(0)
摘要: select trx_state, trx_started, trx_mysql_thread_id, trx_query from information_schema.innodb_trx; 阅读全文
posted @ 2019-12-30 17:16 X__cicada 阅读(827) 评论(0) 推荐(0)
摘要: 他大爷的,原来是在\config文件夹下的middleware.php里设置 阅读全文
posted @ 2019-12-30 14:59 X__cicada 阅读(819) 评论(0) 推荐(0)
上一页 1 ··· 12 13 14 15 16 17 18 19 20 ··· 22 下一页