phpcms模板修改网站模板步骤

修改网站模板步骤
1.找网站
2.分析功能(发布内容 模型分析 模板 界面)
3.用phpcms自带的功能实现功能
4.换模板
5.将网站功能搭建完成
在模板中引入头部  {template "content","top"}
6.碎片管理 在代码里先定义好了 然后再用界面编辑来 负责没效果在后台
 logo 
{pc:block pos="logo"}       
 {/pc}
幻灯
{pc:block pos="banner"}
    {/pc}
 客服
{pc:block pos="kefu"}
    {/pc}
 版权
{pc:block pos="copy"}
    {/pc}
 
1.首先把index.html替换掉,然后把css和image调回来
2.分析碎片管理需要哪些模块
公司介绍
截取
    {pc:get sql="select * from v9_page where catid='9'"}   
                            {htmlspecialchars_decode(str_cut($data[0][content],1200))}
                        {/pc}


 
 
 
 
 
实现效果在列表页 也能列举出根栏目下的子栏目
   {if $top_parentid}
    <div class="subnav">
        {pc:content action="category" catid="$top_parentid" num="15" siteid="$siteid" order="listorder ASC"}
            {loop $data $r}
            <a href="{$r[url]}">{$r[catname]}</a><span> | </span>
            {/loop}
        {/pc}
        <a href="{APP_PATH}index.php?m=video&c=index&a=album">视频专辑</a> <span> | </span>
        {if $modelid}<a href="{APP_PATH}index.php?m=content&c=search&catid={$catid}">搜索</a>{/if}
    </div>
    {/if}
 


 
php时间戳与日期转换
$date3=date('Y-m-d H:i:s',"1228348800");
在phpcms中{date("Y-m-d H:i:s",$ls[inputtime])}
这样就OK了,如还想得到小时,分钟秒,只要把'Y-m-d'改一下就可以了,不过要注意一下,PHP时间还像有8个小时的误差.加上就OK了.

时间戳转正常日期有了,反之呢,把正常日期格式转为时间戳呢,请看如下代码:

$year=((int)substr("2008-12-04",0,4));//取得年份

$month=((int)substr("2008-12-04",5,2));//取得月份

$day=((int)substr("2008-12-04",8,2));//取得几号

echo mktime(0,0,0,$month,$day,$year);

这样就能把正常日期转成时间戳了,这里如果有时分秒也是同理,
  

你可能感兴趣的:(phpcms模板修改网站模板步骤)