会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
禅_无知
博客园
首页
新随笔
联系
订阅
管理
上一页
1
···
12
13
14
15
16
17
18
19
20
···
22
下一页
2020年3月4日
MySQL count(*) 查询总条数
该文被密码保护。
阅读全文
posted @ 2020-03-04 16:48 X__cicada
阅读(1)
评论(0)
推荐(0)
2020年2月26日
SQL开发技巧
摘要: 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)
2020年1月20日
tp5模板输出日期时间
摘要: {$add_time|date="Y-m-d H:i"}
阅读全文
posted @ 2020-01-20 15:07 X__cicada
阅读(1970)
评论(0)
推荐(0)
TP5.1 自定义分页
摘要: <?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)
2020年1月19日
TP5 记录搜索历史
摘要: $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)
2020年1月15日
cgi,fastcig,php-fpm
摘要: 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)
2020年1月14日
mysql给一个库建立管理员
摘要: 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)
2020年1月9日
layer 提示框
摘要: //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)
2019年12月30日
mysql 查询当前运行的事务
摘要: 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)
TP6中间件别名
摘要: 他大爷的,原来是在\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
下一页
公告