本篇内容主要讲解“thinkPHP5有哪些实用入门进阶知识点和各种常用功能代码”,感兴趣的朋友不妨来看看。本文介绍的方法操作简单快捷,实用性强。下面就让小编来带大家学习“thinkphp5有哪些实用入门进阶知识点和各种常用功能代码”吧!【T
本篇内容主要讲解“thinkPHP5有哪些实用入门进阶知识点和各种常用功能代码”,感兴趣的朋友不妨来看看。本文介绍的方法操作简单快捷,实用性强。下面就让小编来带大家学习“thinkphp5有哪些实用入门进阶知识点和各种常用功能代码”吧!
dump(THINK_VERSioN);
{$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>
【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 $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}
<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}
// 设置异常错误报错级别,关闭notice错误error_reporting(E_ALL ^ E_NOTICE);
想直接获取单个字段值,弄了半天,tp5的getField()方法变了,具体如下:
TP5中的getField():拆分为value和column了
例子:
••• where("id = 1")->value("title"); 输出:(string) title
••• 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 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;}
//判断新模型是否存在$models = new ModelsModel;if($models::where('tablename',$data['tablename'])->whereOr('name',$data['name'])->count()){return error('模型已经存在!');exit();}
//判断新模型是否存在$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}
<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>
<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
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
回答
回答
回答
回答
回答
回答
回答
回答
回答
回答
0