我的编程空间,编程开发者的网络收藏夹
学习永远不晚

thinkphp5有哪些实用入门进阶知识点和各种常用功能代码

短信预约 -IT技能 免费直播动态提醒
省份

北京

  • 北京
  • 上海
  • 天津
  • 重庆
  • 河北
  • 山东
  • 辽宁
  • 黑龙江
  • 吉林
  • 甘肃
  • 青海
  • 河南
  • 江苏
  • 湖北
  • 湖南
  • 江西
  • 浙江
  • 广东
  • 云南
  • 福建
  • 海南
  • 山西
  • 四川
  • 陕西
  • 贵州
  • 安徽
  • 广西
  • 内蒙
  • 西藏
  • 新疆
  • 宁夏
  • 兵团
手机号立即预约

请填写图片验证码后获取短信验证码

看不清楚,换张图片

免费获取短信验证码

thinkphp5有哪些实用入门进阶知识点和各种常用功能代码

本篇内容主要讲解“thinkphp5有哪些实用入门进阶知识点和各种常用功能代码”,感兴趣的朋友不妨来看看。本文介绍的方法操作简单快捷,实用性强。下面就让小编来带大家学习“thinkphp5有哪些实用入门进阶知识点和各种常用功能代码”吧!

    【ThinkPHP版本查询】

    dump(THINK_VERSION);

    模板获取get参数

    {$Think.get.pageNumber}或者
    $Request.param.name(参数名)

    【循环嵌套标签】

    <select class="form-control m-b" name="parentid"><option value="0" selected>〓 作为顶级分类 〓</option>{volist name='catone' id='vo'}    <option value="{$vo.id}" {if condition="input('parentid',0) eq $vo.id"}selected{/if}>{$vo.catname}</option>{/volist}</select>

    模板循环标签

    {volist}{/volist}标签遍历

    【offset 开始遍历的地方】
    【length 遍历的长度,循环的次数】
    【mod 与当前数取余】
    【empty 为空时显示】
    【key 循环的次数】

      <h2>这是view/index/index.html</h2>  {volist name="list" id="vo" offset="0" length="3" mod="2" empty="这里没有数据" key ='s'}       <p>{$mod}:{$s}:{$vo.name}</p>  {/volist}

    {foreach}{/foreach}标签遍历

    方法一

    {foreach $list as $vo}  <p>{$vo.name}:{$vo.email}</p>{/foreach}

    方法二

      {foreach name="list" as item="vo"}    <p>{$key} : {$vo.name} : {$vo.email}</p>  【$key 数组的下标】  {/foreach}

    {for}{/for}标签循环

    <body>  {for start="1" end="10" step="2" name="i"} 【start 相当于for循环中的$i=1】【end 相当于for循环中的$i<10】【strp 步进值】【name 默认为i,对应$i】    <p>{$i}</p>  {/for}</body>

    【多个查询条件判断】非常实用

    // 检查分类名称和分类目录是否重名$count_one = Db::name('category')->where('id','<>',$id)->where('catname',input('post.catname'))->count();$count_two = Db::name('category')->where('id','<>',$id)->where('catdir',input('post.catdir'))->count();if($count_one){return error('分类名称重名!');}else if($count_two){return error('分类目录重名!');}

    【单选框条件判断】

    <!--IF判断或者三元运算符(更简单,推荐)--><!--注意:三元运算条件判断只能用==,不能用eq(不能解析)--><!--($catinfo.isend == 1) ? 'checked' : '' 可以简写成:$catinfo.isend ? 'checked' : ''--><!--开启:--><input type="radio"  value="1" name="ismenu" {$catinfo.ismenu ? 'checked' : ''}><!--隐藏:--><input type="radio"  value="0" name="ismenu" {$catinfo.ismenu ? '' : 'checked'}>

    【模板中三层循环】

    {volist name="menu" id="vo"}<li><a href="#" rel="external nofollow" ><i class="fa {$vo.icon}"></i> <span class="nav-label">{$vo.name}</span><span class="fa arrow"></span></a>{eq name="vo.child" value="1"}<ul class="nav nav-second-level">{volist name="vo.son" id="voson"}<li><a {eq name="voson.child" value="0"}class="J_menuItem"{/eq} href="{if condition='voson.child eq 1'}#{else /}{:url($voson.module.'/'.$voson.controller.'/'.$voson.action)}{/if}" rel="external nofollow" >{$voson.name} {eq name="voson.child" value="1"}<span class="fa arrow"></span>{/eq}</a>{eq name="voson.child" value="1"}<ul class="nav nav-third-level">{volist name="voson.son" id="voend"}<li><a class="J_menuItem" href="{:url($voend.module.'/'.$voend.controller.'/'.$voend.action)}" rel="external nofollow" >{$voend.name}</a></li>{/volist}</ul>{/eq}</li>{/volist}</ul>{/eq}</li>{/volist}

    【未定义变量】{$catinfo.catname ?''}

    // 设置异常错误报错级别,关闭notice错误error_reporting(E_ALL ^ E_NOTICE);

    获取单个字段值

    想直接获取单个字段值,弄了半天,tp5的getField()方法变了,具体如下:
    TP5中的getField():拆分为value和column了
    例子:

    &bull;&bull;&bull; where("id = 1")->value("title"); 输出:(string) title
    &bull;&bull;&bull; where("id = 1")->column("title"); 输出:(array)

    【对象转数组】

    $this->toArray();

    【接收表单单个变量值】

    input('post.tab');

    【接收表单数组】

    input('post.order/a');

    【接收链接数据】

    input('parentid',0)

    【模型中新增数据】

    save()

    【控制器中新增数据】

    insert()

    【引用模型别名】

    use app\admin\model\Category as CategoryModel;

    【助手函数】

    用助手函数Db,可以不用引用命名空间

    【静态方法调用】

    外部用类名::方法名,内部用self::方法名

    【判断第三层分类下不能勾选子分类条件】

    只要判断上级分类是第二层,就说明新添加分类为第三层,则不能勾选子分类选项

    $parentid = Db::name('menu')->where('id',input('post.parentid'))->value('parentid');if($parentid && input('post.child')){return error('不能勾选拥有子菜单项!');}

    【单选框和复选框默认值】

    前台变量如果值为0,提交则没有该变量,存入数据库则为默认值。解决方法有二:
    方法一:修改数据表的默认值为0
    方法二:控制器中判断,判断提交数据中是否有该变量,没有则设置该变量值为0

    【插入数据调整信息:修改器】

    protected $insert = ['addtime'];//addtime修改器protected function setAddtimeAttr($value){return date('Y-m-d H:i:s');}

    【读取磁盘文件】

    const newModelSql = './data/sfox_newmodel.sql';$newModelSql = file_get_contents(self::newModelSql);

    【获取模板文件名】

    $handle = opendir('../template/default/temp/');while ($file = readdir($handle)) {if ($file != '.' && $file != '..') {$files[]['name'] = $file;}}

    【原生态删除数据表】

    $dbPrefix = config('database.prefix');Db::execute("DROP TABLE `{$dbPrefix}{$tablename}`;");

    【原生态重命名数据表】

    $dbPrefix = config('database.prefix');Db::execute("RENAME TABLE `{$dbPrefix}{$oldTableName}` TO `{$dbPrefix}{$newTableName}` ;");

    【原生态更改数据表某字段值】

    UPDATE tp_models_field SET issystem=0 WHERE modelid=35;

    【原生态修改数据表字段名称】

    ALTER TABLE `ps_test` DROP COLUMN `{$info['field']}` ;

    【原生态添加数据表字段名称】

    ALTER TABLE `ps_test` ADD `{$fieldname}` VARCHAR(255) NOT NULL DEFAULT '{$defaultvalue}'

    【insert into table 插入多条数据】

    INSERT INTO tablename VALUES(item1, price1, qty1),(item2, price2, qty2),(item3, price3, qty3);

    【转数组格式】

    方法一:$settings = array('setting'=>$data_setting);
    方法二:$settings['setting'] = $data_setting;(推荐)

    模型专题

    字符串查询(预处理机制)

    $models = new ModelsModel;//判断模型是否存在,采用字段串条件查询,配合预处理机制if($models::where("id!=:id AND (tablename=:tablename OR name=:name)")    ->bind([        'id'=>$id,        'tablename'=>$data['tablename'],        'name'=>$data['name']    ])->count()){    return error('模型已经存在!');    exit;}

    【多个条件或判断】whereOr()

    //判断新模型是否存在$models = new ModelsModel;if($models::where('tablename',$data['tablename'])->whereOr('name',$data['name'])->count()){return error('模型已经存在!');exit();}

    【多个条件或判断】where()

    //判断新模型是否存在$models = new ModelsModel;if($models::where('tablename',$data['tablename'])->where('name',$data['name'])->count()){return error('模型已经存在!');exit();}

    前台指定调用条数

    offset=0 length=4(从第一条开始,总共调用4条数据

    <ul class="qy-mod-ul">{volist name="today_hot_list" id="thl_vo" offset=0 length=4}<li class="qy-mod-li"><div class="qy-mod-img horizon"><div class="qy-mod-link-wrap"><a href="/index/play?id={$thl_vo.id}" rel="external nofollow"  rel="external nofollow"  target="_blank" title="{$thl_vo.title}" class="qy-mod-link"><img class="lazy" data-src="{$thl_vo.img}" rseat="712211_focus_juchangimage" alt="{$thl_vo.title}" class="qy-mod-cover"><div class="icon-tl"></div><div class="icon-bl"></div></a></div><div class="title-wrap"><p class="main"><a target="_blank" title="{$thl_vo.title}" href="/index/play?id={$thl_vo.id}" rel="external nofollow"  rel="external nofollow"  rseat="712211_focus_juchangtitle" class="link-txt"> {$thl_vo.title} </a></p></div></div></li>{/volist}</ul>

    奇偶循环调用

    $key:是从0开始的
    $i:是从1开始的
    思路:取模运算,当是奇数的时候,循环输出奇数和偶数内容

    {volist name="channel_list" id="cvo"}{if condition="$i%2 eq 1"}<div class="nav-list"><div class="nav-list-item"><a target="_blank" rseat="712211_channel_yule"href="/index.php/index/index/cate?label_channel={$cvo.id}" rel="external nofollow"  class="nav-list-link">{$cvo.title}</a></div><div class="nav-list-item"><a target="_blank" rseat="712211_channel_zixun"href="/index.php/index/index/cate?label_channel=<?php echo $channel_list[$key + 1]['id']?>" rel="external nofollow"  class="nav-list-link"><?php echo $channel_list[$key + 1]['title']?></a></div></div>{/if}{/volist}

    自动切换

    1、前端模板

    <div id="piclist" class="qy-focus-index-list"><ul class="focus-index-list">{volist name="data" id="ivo"}<li class="focus-index-item" rseat="fcs_0_p<?php echo $i;?>" ><a target="_blank" href="{$ivo.url}" rel="external nofollow"    class="focus-index-itemLink"><img class="lazy" data-src="{$ivo.img}"></a></li>{/volist}</ul></div><div class="qy-focus-side-panel"><div class="focus-side-inner"><ul id="txtlist" class="focus-side-list">{volist name="data" id="vo"}<li class="focus-side-item<?php if($i==1){echo ' selected';}?>"><a title="{$vo.title}" rseat="{$i}" class="focus-side-itemLink">{$vo.title}</a></li>{/volist}</ul></div></div>

    2、JS功能实现

    <script type="text/javascript" class="lazy" data-src="http://apps.bdimg.com/libs/jquery/2.1.4/jquery.min.js"></script><script type="text/javascript">$('.focus-side-itemLink').on('mouseover',function(){$(this).parent('li').addClass('selected').siblings('li').removeClass('selected');var i = $(this).attr('rseat');$('.focus-index-list li[rseat="fcs_0_p'+i+'"]').show().siblings('li').hide();});</script>

    加红关键字

    <a href="">{$v.username|str_replace=$keyword, '<font external nofollow" color:red">' . $keyword . '</font>', ###}</a>

    到此,相信大家对“thinkphp5有哪些实用入门进阶知识点和各种常用功能代码”有了更深的了解,不妨来实际操作一番吧!这里是编程网网站,更多相关内容可以进入相关频道进行查询,关注我们,继续学习!

    免责声明:

    ① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

    ② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

    thinkphp5有哪些实用入门进阶知识点和各种常用功能代码

    下载Word文档到电脑,方便收藏和打印~

    下载Word文档

    猜你喜欢

    thinkphp5有哪些实用入门进阶知识点和各种常用功能代码

    本篇内容主要讲解“thinkphp5有哪些实用入门进阶知识点和各种常用功能代码”,感兴趣的朋友不妨来看看。本文介绍的方法操作简单快捷,实用性强。下面就让小编来带大家学习“thinkphp5有哪些实用入门进阶知识点和各种常用功能代码”吧!【T
    2023-07-05

    thinkphp5实用入门进阶知识点和各种常用功能代码汇总

    这篇文章主要介绍了thinkphp5实用入门进阶知识点和各种常用功能代码汇总的相关资料,需要的朋友可以参考下
    2023-03-11

    编程热搜

    • Python 学习之路 - Python
      一、安装Python34Windows在Python官网(https://www.python.org/downloads/)下载安装包并安装。Python的默认安装路径是:C:\Python34配置环境变量:【右键计算机】--》【属性】-
      Python 学习之路 - Python
    • chatgpt的中文全称是什么
      chatgpt的中文全称是生成型预训练变换模型。ChatGPT是什么ChatGPT是美国人工智能研究实验室OpenAI开发的一种全新聊天机器人模型,它能够通过学习和理解人类的语言来进行对话,还能根据聊天的上下文进行互动,并协助人类完成一系列
      chatgpt的中文全称是什么
    • C/C++中extern函数使用详解
    • C/C++可变参数的使用
      可变参数的使用方法远远不止以下几种,不过在C,C++中使用可变参数时要小心,在使用printf()等函数时传入的参数个数一定不能比前面的格式化字符串中的’%’符号个数少,否则会产生访问越界,运气不好的话还会导致程序崩溃
      C/C++可变参数的使用
    • css样式文件该放在哪里
    • php中数组下标必须是连续的吗
    • Python 3 教程
      Python 3 教程 Python 的 3.0 版本,常被称为 Python 3000,或简称 Py3k。相对于 Python 的早期版本,这是一个较大的升级。为了不带入过多的累赘,Python 3.0 在设计的时候没有考虑向下兼容。 Python
      Python 3 教程
    • Python pip包管理
      一、前言    在Python中, 安装第三方模块是通过 setuptools 这个工具完成的。 Python有两个封装了 setuptools的包管理工具: easy_install  和  pip , 目前官方推荐使用 pip。    
      Python pip包管理
    • ubuntu如何重新编译内核
    • 改善Java代码之慎用java动态编译

    目录