返回顶部
首页 > 资讯 > 后端开发 > PHP编程 >thinkphp5有哪些实用入门进阶知识点和各种常用功能代码
  • 462
分享到

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

2023-07-05 11:07:36 462人浏览 薄情痞子
摘要

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

本篇内容主要讲解“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 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 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" 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有哪些实用入门进阶知识点和各种常用功能代码”有了更深的了解,不妨来实际操作一番吧!这里是编程网网站,更多相关内容可以进入相关频道进行查询,关注我们,继续学习!

    --结束END--

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

    本文链接: https://lsjlt.com/news/351353.html(转载时请注明来源链接)

    有问题或投稿请发送至: 邮箱/279061341@qq.com    QQ/279061341

    猜你喜欢
    软考高级职称资格查询
    编程网,编程工程师的家园,是目前国内优秀的开源技术社区之一,形成了由开源软件库、代码分享、资讯、协作翻译、讨论区和博客等几大频道内容,为IT开发者提供了一个发现、使用、并交流开源技术的平台。
    • 官方手机版

    • 微信公众号

    • 商务合作