index.php
来自「网站代码」· PHP 代码 · 共 31 行
PHP
31 行
<?php
/*
*####################################################
* PHPCMS v3.0.0 - Advanced Content Manage System.
* Copyright (c) 2005-2006 phpcms.cn
*
* For further information go to http://www.phpcms.cn/
* This copyright notice MUST stay intact for use.
*####################################################
*/
defined('IN_PHPCMS') or exit('Access Denied');
$templateid = $_CHA['templateid'] ? $_CHA['templateid'] : "index";
$childcats = get_childcat();
$meta_title = $_CHA['channelname'];
$meta_keywords = $_CHA['meta_keywords'];
$meta_description = $_CHA['meta_description'];
$childcats = get_childcat($channelid);
ob_start();
include template($mod,$templateid);
$data = ob_get_contents();
ob_clean();
$p->set_type('path');
$filename = $p->get_indexurl(1);
file_write($filename,$data);
?>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?