⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 index.php

📁 一个简单的网站管理系统,他能实现你所需要的功能,是个值得一看的系统
💻 PHP
字号:
<?php
if(!defined('IN_PHPCMS')) {
        exit('Access Denied');
}

$head[title]=$sitekeywords;
$head[keywords]=$sitekeywords;
$head[description]=$sitedescription;

$cats = $cat = array();
$childcatids=childcatids(0);
if(is_array($childcatids)){
   foreach($childcatids as $catid){
           if($_CAT[$catid][cattype] && $_CAT[$catid][islist]){
              $cat = $_CAT[$catid];
              $cat[url] = $rootpath.'/data/'.$cat[catdir].'/';
              $cats[] = $cat;
           }
   }
}

ob_start();
include template('index');
copyright($version);
$data=$inc.ob_get_contents();
$filename='index'.$fileext;
file_write($filename,$data);
ob_clean();
?>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -