摘要: mvc目录结构 /mvc - app - constroller - IndexController.php - model - StudentModel.php - view - index.tpl - students.tpl - config - config.php - core - App 阅读全文
posted @ 2021-07-02 15:16 胡勇健 阅读(173) 评论(0) 推荐(0)
摘要: 常用的设计模式:单例模式,工厂模式,观察者模式,适配器模式,依赖注入等 单例模式 //单例设计模式 class Singleton { //单例对象 private static $instance; private function __construct() { } public static 阅读全文
posted @ 2021-07-02 04:55 胡勇健 阅读(151) 评论(0) 推荐(0)