thinkphp5.1模板中使用switch
用法:
{switch 变量 }
{case value1 }输出内容1{/case}
{case value2}输出内容2{/case}
{default /}默认情况
{/switch}
示例:
{switch User.level}
{case 1}value1{/case}
{c...
thinkphp where concat
thinkphp5.1中where条件数据库字段保存为逗号隔开,查询的时候使用concat
数据库中关键字存储的是"a,ab,abc"类似信息,当搜索"a"的时候,我只想要关键字包含"a"的信息,不需要包含"ab"或"abc"的信息,怎么实现呢?
需要在字段值两端加,变成",a,ab,abc,",然后搜索关键字两端加,变成...
thinkphp5查询只需要某一列(某一个字段,其他不需要)的值
查询某一列的值可以用
// 返回数组
Db::table('think_user')->where('status',1)->column('name');
// 指定id字段的值作为索引
Db::table('think_user')->where('status',1)->column('name','i...
Thinkphp调用Image类生成等比例缩略图$image->thumb
图片类extend\image\Image.php
/**
* 生成缩略图
*
* @param integer $width 缩略图最大宽度
* @param integer $height 缩略图最大高度
* @param int $type 缩略图裁剪类型...
Thinkphp5模板输出,时间戳自动转换为时间格式
// 自动写入时间戳字段
'auto_timestamp' => true,
// 时间字段取出后的默认时间格式
'datetime_format' => 'Y-m-d H:i:s',
thinkphp5数据库存储时间为时间戳,模板输出时不需要时间格式化就可以输出时间格式
{$vo.create_...
thinkphp5获取新增记录id
使用getLastInsID方法:
Db::name('messege')->insert($data);
$userId = Db::name('messege')->getLastInsID();
使用insertGetId方法
$userId = Db::name('messege')->insertGetId(...
tp5 model 关闭时间戳自动写入
模型里面设置:
protected $autoWriteTimestamp = false; // 关闭自动写入时间戳
protected $updateTime = false;// 只关闭自动写入update_time字段
在config中添加全局设置:
'auto_timestamp' => false,&emsp...
thinkphp5 unique自动验证账号已存在,数据表默认主键是id
thinkphp5 使用unique自动验证账号是否已存在,好像数据表默认主键必须是id
如果主键不是id,会提示错误SQLSTATE[42S22]: Column not found: 1054 Unknown column 'id' in 'field list'
解决办法,可以自定义主键id
...
Thinkphp5清除runtime下的cache缓存,temp缓存,log缓存
Thinkphp5清除runtime下的cache缓存,temp缓存,log缓存
/**
* 清除缓存
*/
public function clearCache(){
\think\facade\Cache::clear();
return ZHTReturn('清除成功',1);
}
/...
thinkphp5.1 env
$path = env();
dump($path);
array(11) {
["THINK_PATH"] => string(26) "D:\www\WWW\maiqi\thinkphp\"
["ROOT_PATH"] => string(17) "D:\www\WWW\maiqi\"
["APP_PATH"...
thinkphp5.1 关闭日志log和日志设置
打开文件config\log.php
// +----------------------------------------------------------------------
// | 日志设置
// +----------------------------------------------------------...
thinkphp5.1中使用缓存和清除缓存
使用缓存
public function pageQuery(){
$rs = cache('role');
if(!$rs){
$key = input('key');
$where[] = ['status','=',1];
if($key != '')$where[] = ['roleTitle','...
thinkphp5.1 allowField(true)无效不管用
thinkphp版本5.1.40 LTS
表单提交的数据为
$data['id'] = 8;
$data['roleTitle'] = '123';
$data['roleDesc'] = 'abc';
其中id数据表中不存在,所以需要过滤
但是
$rs = $this->allowField(true...
Thinkphp5.1自定义分页样式
第一步、添加分页配置
在config目录下新建一个paginate.php配置文件,代码如下:
<?php
// +----------------------------------------------------------------------
// |分页设置
// +-----------------------...
thinkphp5 paginate.php配置不管用
thinkphp5自定义分页样式,
在配置文件夹config里面,新建paginate.php配置文件(不知道为什么默认不存在),
但总是不成功,配置文件不起作用
如果直接写到model里面,是可以的
$list = Db::name('user')->where('status',1)->pagin...
thinkphp5模板布局能否指定某一个页面不显示该模板布局layout?
两种方式
1.在控制器里对应的方法里
$this->view->engine->layout(false);// 前提是你继承了Controller
namespace app\index\controller;
use think\Controller;
class User extends Control...
关于本站
“最难不过坚持”
本人承接扒站仿站,php网站维护,病毒查杀,网站编辑,网站改版,html制作
有需要网站维护,改版,病毒查杀,网站编辑,网站备案,html制作等相关的工作可以联系我。
本人有多年相关工作经验,也可提供免费咨询,交个朋友。
有需要探讨问题的朋友,也可以加我微信,共同探讨!
微信:15011482830 QQ:408917339
2655
39
分类目录
最新评论
- https://jueru.net/
-
- :weixiao:
-
- :shuijiao: :weiqu: :zhenbang: :leng:
-
- :yiwen: :yiwen: :yiwen: :yiwen:
-
- 这个业务逻辑多少都有点奇怪了,阅读浏览次数增值在新闻详情页的控制器方法里setInc,这怎么还写进模型事件里了。如果非要用onAfterRead也可以,把新闻文章的内容单独分出来一个news_content表,然后把它和news做关联,然后给news_content表的onAfterRead事件做增值处理,这样点进新闻页内查询到文章内容时才会触发它。
-
文章标签更多