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();