欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  php教程

huihuicms系统以APP方式重新诠释cms的意义

程序员文章站 2022-04-10 10:39:54
...
php代码
index.php
 
class huihuicms{
	public function display();
}

class Article extends huihuicms{
	global $db;
	$list = $db->getAll("select * from table");
	$this->display();
}

class Shop extends huihuicms{
	
}

class Admin{
	$this->display();
}

$article = new Article();