phpcms9.6.0
编辑整理:整理来源:悟空问答,浏览量:70,时间:2023-03-16 14:00:01
关于phpcms9.6.0内容导航:
1、phpcms9.6.0
补充知识: 这位网友的问题我还真让我跑到phpcms的官方论坛调查了一番,因为你提灯威弱企希由占到的版本是v9.5.10,但是官方发布升级包时,在升级到v9.6.0的时候才油统集香五限回严时所而声明“9.6.0适配php5.5 php5.6 php7”,那么在它之前的版本有那个阶段是适配php建专子架标获移5.4的呢?
首先我确定的是v9.5.10是适配php5.4的,因为这个版本我在php5.4下记得用过。在具体的历史升级公告里我没有找到直接说明从哪个版本开始适配php5.4的,但是我从问题贴的相关这个话题的提问时间中统计预估大约是从phpcms v9.5.6往后的肥诗版本应该是可以适配php5.4的,而且貌似utf-8优于前器修阶鲁gbk版的。
个人浓推测和经验,如有出入欢迎回复交流。
2、phpcms9.6.0
phpcms常用标签
guml
php开发
鲁审谁究翻渐顶级栏目名称:{$CATEGORYS[$top_parentid][catname]}
顶级栏目url:{$CATEGORYS[$top_parentid][url]}
顶级栏目id:{$CATEGOR粉卷及老YS[$top_pa水rentid][catid]}
其他字段只需要改动xxx:{$CA散安优钟明继呼施著TEGORYS[$top_parentid][xxx]}
父栏目名称:{$CATEGORYS[$CAT[parentid]][catname]}
父栏目url怎李达修绍婷石持识军源:{$CATEGORYS[$CAT[parentid]][url]}
父栏目id:{$CATEGORYS[$CAT[parentid]][catid]}
其他字段只需要改动xxx:{$CATEGORYS[$CAT[paren政计好tid]][xxx]}
**************************
内容页:
{$CAT[catid]}//调用上一级 栏目id
{$CAT[ca吃苦数能渐tname]}//调用上一级 栏目名称
{$CAT[url]}//调用标上一级 栏目url
*****************************
{go($catid,$id)} 获取当前页面链接 {$url}在静态时不正常
{$CATEGORYS[$catid][url报算督根航农]} 显示当前栏目链接
{$CATEGORYS[$catid][catname]足罗} 显示当前栏目名称
{$CATEGORYS[$r[catid]][catname]}循环内显示栏也哥目
{if $r[thumb]}<img src="{thumb($r[t并历奏等界口路完改能humb],120,90)}"
alt="{$r[title]}" width="120" height="90" />{/if}有图显示图 没图不显示
截取:{str_cut($r[title],46,'')}
{str_cut(strip_tags(爱稳序念纪$r[content]),400)} 列表页调取内容 过滤ht错载课草ml标签 需要加moreinfo="1"
{date('Y-m-d H:i:s', $r['inputtime'])} 列表页调取发布时间
{date('Y-m-d',strtotime($inputtime))} 或者 {date('Y-激否采技给带苏很举县m-d',time($inputtime))} 内容页调取发布时间
**********************************************************************
算行对提损子陈讲容phpcms 调用当前栏目下的顶抗机子栏目
category.html 写以下代码:
{loop subcat($catid) $r}
<ul>
<li><a href="{$r[url]}" title="{$r[catname]}">{$r[catname]}</a></li>
</ul>
{/loop}
list.html 写以下代码:
{loop subcat($catid) $r}
<ul>
<li><a href="{$CATEGORYS[$r[catid]][url]}">{$CATEGORYS[$r[catid]][catname]}</a></li>
</ul>
{/loop}
********************************************************************************
<div class="pindaoright" {if $r[thumb]==""} style="width:100%;" {/if}>
如果图片不存在 则执行某某
********************************
{if $r['catid']==$catid} class="newclass" {/if} 导航栏当前栏目增加class
*********************************************************
phpcms分页代码
<style type="text/css">
.text-c {margin:10px 0;}
.text-c a {padding:5px;margin:0 8px;border:1px solid #ccc;background-color:#eee;}
</style>
<center><div id="pages" class="text-c">{$pages}</div></center>
****************************************************************
phpcms v9列表页默认分页页码为10页,下面为分页页码条数的修改方法:
打开phpcms\libs\functions\global.func.php文件,
找到function pages函数(在672行左右)
修改下面代码中红色数字(10)为你想要显示的页码条数即可。
function pages($num, $curr_page, $perpage = 20, $urlrule = '', $array = array(),$setpages =?10)
---------------------
手机端图片自适应大小和居中 文章缩进
<style type="text/css">
.part img {
width:100%!important;
height: auto!important;
display: table-cell!important;
}
.part p {
text-indent: 2em;
}
</style>
-------------------------------------
第一个是图 剩下的是列表
{pc:content action="lists" catid="7" order="listorder DESC" thumb="1" num="1"}
{php $imgarr=array();$count=0;}
{loop $data $r}
{php array_push($imgarr,$r[id]);}
<h4>
<a href="{$r[url]}" target="_blank" title="{$r[title]}">{str_cut($r[title],60,'')}</a>
</h4>
<a href="{$r[url]}" target="_blank" title="{$r[title]}">
<img src="{thumb($r[thumb],100,70)}" width="100" height="70" alt="{$r[title]}">
</a>
<p>{str_cut($r[description],90)}</p>
{/loop}
{/pc}
</div>
<ul>
{pc:content action="lists" catid="7" order="listorder DESC" num="5"}
{loop $data $r}
{if $count<4&&!in_array($r[id],$imgarr)}
{php $count++;}
<li><a href="{$r[url]}" target="_blank" title="{$r[title]}">{str_cut($r[title],57,'')}</a></li>
{/if}
{/loop}
{/pc}
*********************************************
phpcms调用sql实例
{pc:get sql="select * from v9_news where catid=$catid and id!=$id order by updatetime desc" num="10"}
{loop $data $r}
<li>
<a target="_blank" href="{$r[url]}" style="color:#333333;">{$r[title]}</a>
<span style="margin-left: 30px;color: #666;font-size: 14px;">{date('Y-m-d', $r[updatetime])}</span>
</li>
{/loop}
{/pc}
{pc:get sql="SELECT * FROM `v9_news` WHERE thumb!='$thumb' Order by id DESC " num="50"} 调用有图片的最新新闻
{loop $data $r}
织梦调用sql实例
{dede:sql sql="select * from dede_archives where typeid=5 and id!=~id~"}
<li>
<a href="[field:id function=IDReturnURL(@me)/]" class="step-link">[field:title/]</a>
</li>
{/dede:sql}
3、phpcms9.6.0
这位网友的问题我还真让我跑到phpcms的官方论坛调查了一番,因为你提到的版本是v9.5.10,但是官方发布升级包时,在升级到v9.6.0的时候才声明“9.6.0适配php5.5 php5.6 php7”,那么在它之前的版本有那个阶段是适配php5.4的呢?
首先我确定的是v9.5.10是适配php5.4的,因为这个版本我在php5.4下记得用过。在具体的历史升级公告里我没有找到直接说明从哪个版本开始适配php5.4的,但是我从问题贴的相关这个话题的提问时间中统计预估大约是从phpcms v9.5.6往后的版本应该是可以适配php5.4的,而且貌似utf-8优于gbk版的。
个人推测和经验,如有出入欢迎回复交流。
可以兼容的
再看看别人怎么说的。
行业热门话题:
【phpcms9.6.0】【phpcms9.6.0】【phpcms9.6.0】
phpcms9.6.0完!