或者
<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 循环的次数】
{volist name=”list” id=”vo” offset=”0″ length=”3″ mod=”2″ empty=”这里没有数据” key=’s’}
<p>{$mod}:{$s}:{$vo.name}</p>
{/volist}
<p>{$vo.name}:{$vo.email}</p>
{/foreach}
<p>{$key} : {$vo.name} : {$vo.email}</p> 【$key 数组的下标】
{/foreach}
{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(‘分类目录重名!’);
}
<!–注意:三元运算条件判断只能用==,不能用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’}>
<li>
<a href=”https://www.jb51.net/article/277671.htm#” 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=”https://www.jb51.net/article/{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=”https://www.jb51.net/article/{:url($voend.module.’/’.$voend.controller.’/’.$voend.action)}” rel=”external nofollow” >{$voend.name}</a></li>
{/volist}
</ul>
{/eq}
</li>
{/volist}
</ul>
{/eq}
</li>
{/volist}
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::方法名
if($parentid && input(‘post.child’)){
return error(‘不能勾选拥有子菜单项!’);
}
前台变量如果值为0,提交则没有该变量,存入数据库则为默认值。解决方法有二:
方法一:修改数据表的默认值为0
方法二:控制器中判断,判断提交数据中是否有该变量,没有则设置该变量值为0
//addtime修改器
protected function setAddtimeAttr($value){
return date(‘Y-m-d H:i:s’);
}
$newModelSql=file_get_contents(self::newModelSql);
while ($file=readdir($handle)) {
if ($file !=’.’ && $file !=’..’) {
$files[][‘name’]=$file;
}
}
Db::execute(“DROP TABLE `{$dbPrefix}{$tablename}`;”);
Db::execute(“RENAME TABLE `{$dbPrefix}{$oldTableName}` TO `{$dbPrefix}{$newTableName}` ;”);
方法一:$settings=array(‘setting’=>$data_setting);
方法二:$settings[‘setting’]=$data_setting;(推荐)
//判断模型是否存在,采用字段串条件查询,配合预处理机制
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条数据
{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=”https://www.jb51.net/index/play?id={$thl_vo.id}” rel=”external nofollow” rel=”external nofollow” target=”_blank” title=”{$thl_vo.title}” class=”qy-mod-link”>
<img src=”https://www.jb51.net/article/{$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=”https://www.jb51.net/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开始的
思路:取模运算,当是奇数的时候,循环输出奇数和偶数内容
{if condition=”$i%2 eq 1″}
<div class=”nav-list”>
<div class=”nav-list-item”><a target=”_blank” rseat=”712211_channel_yule”
href=”https://www.jb51.net/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=”https://www.jb51.net/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}
<ul class=”focus-index-list”>
{volist name=”data” id=”ivo”}
<li class=”focus-index-item” rseat=”fcs_0_p<?php echo $i;?>” style=” opacity: 1;<?php if($i>1){echo ‘display: none;’;}?>”>
<a target=”_blank” href=”https://www.jb51.net/article/{$ivo.url}” rel=”external nofollow”
class=”focus-index-itemLink”><img src=”https://www.jb51.net/article/{$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”>
$(‘.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>
到此这篇关于thinkphp5实用入门进阶知识点和各种常用功能代码汇总的文章就介绍到这了,更多相关thinkphp5常用功能代码内容请搜索脚本之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持脚本之家!