Phpcms整理】的更多相关文章

一.先去官网下载一个pc(http://www.phpcms.cn/)进行安装 把下载的pc包放在服务器www目录下: 在地址栏访问localhost/project/install/install.php然后回车: 跟着安装向导,下一步下一步,PHPSSO配置选择全新安装,其他的都不用改:…
phpcms标签整理_当前栏目调用 转载 **//SQL语句调用: {pc:get sql="select * from phpcms_category where catid in($catid) ORDER BY catid ASC" return="data"}        {loop $data $r}        <div class="grid_4" style="margin-bottom:20px;"…
常见的phpcms标签调用  1.调用本系统单条数据(调用ID为1的信息,标题长度不超过25个汉字,显示更新日期): "select * from phpcms_content where contentid=1" /} 标题:{str_cut($r[title], 50)} URL:{$r[url]} ​更新日期:{date('Y-m-d', $r[updatetime])} 2.调用本系统多条数据(调用栏目ID为1通过审核的10条信息,标题长度不超过25个汉字,显示更新日期): &…
常用函数 及 常用代码 总结如下 <?php //转换字符串或者数组的编码 str_charset($in_charset, $out_charset, $str_or_arr) //获取菜单 menu($parentid, $code = '') //判断当前浏览器是否为IE is_ie() //检查日期的合法性 is_date($ymd, $sep='-') // 检查邮箱的合法性 is_email($email) //截取字符串 str_cut($string, $length, $dot…
{template "content","header"}   ----------  调用根目录下phpcms\template\content\header文件{CHARSET}  -------------------------------------字符集 (gbk或者utf-8) {if isset($SEO['title']) && !empty($SEO['title'])}{$SEO['title']}{/if}{$SEO['sit…
{template "content","header"} 调用根目录下phpcms\template\content\header文件 {CHARSET} 字符集 (gbk或者utf-8) {if isset($SEO['title']) && !empty($SEO['title'])} {$SEO['title']}{/if} {$SEO['site_title']} {$SEO['keyword']} {$SEO['description']…
一.查 ①select($where = '', $data = '*', $limit = '', $order = '', $group = '', $key='') /** * 执行sql查询 * @param $where 查询条件[例`name`='$name'] * @param $data 需要查询的字段值[例`name`,`gender`,`birthday`] * @param $limit 返回结果范围[例:10或10,10 默认为空] * @param $order 排序方…
1.{template "content","header"} 2.网站网址调用:{siteurl($siteid)}: 3.标签get:分页,{pc:get sql="select p.title,p.thumb,p.url,p_d.* from v9_peishi as p,v9_peishi_data as p_d where p.id=p_d.id" order="listorder ASC" num="11…
转自http://www.cnblogs.com/Braveliu/p/5103918.html 常用函数 及 常用代码 总结如下 <;?php //转换字符串或者数组的编码 str_charset($in_charset, $out_charset, $str_or_arr)   //获取菜单 menu($parentid, $code = '')   //判断当前浏览器是否为IE is_ie()   //检查日期的合法性 is_date($ymd, $sep='-')   // 检查邮箱的合…
PHPcms后台登陆后的页面修改 Phpcms->modules->admin->templates->main.tpl.php 1,安全提示部分 <h6><?php echo L('main_safety_tips')?></h6> 2授权信息 <h6><?php echo L('main_license')?></h6> 3,团队部分 <h6><?php echo L('main_prod…