├── README.md ├── app ├── controllers │ ├── Home.class.php │ └── Test.class.php └── views │ ├── error │ └── error.php │ └── index │ └── index.php ├── config └── constants.php ├── core ├── App.class.php ├── Controller.class.php ├── Model.class.php └── MyException.class.php ├── index.php └── web ├── .htaccess ├── controllers └── Home.class.php └── index.php /README.md: -------------------------------------------------------------------------------- 1 | # 1 -------------------------------------------------------------------------------- /app/controllers/Home.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zguowei/1/HEAD/app/controllers/Home.class.php -------------------------------------------------------------------------------- /app/controllers/Test.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zguowei/1/HEAD/app/controllers/Test.class.php -------------------------------------------------------------------------------- /app/views/error/error.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zguowei/1/HEAD/app/views/error/error.php -------------------------------------------------------------------------------- /app/views/index/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zguowei/1/HEAD/app/views/index/index.php -------------------------------------------------------------------------------- /config/constants.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zguowei/1/HEAD/config/constants.php -------------------------------------------------------------------------------- /core/App.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zguowei/1/HEAD/core/App.class.php -------------------------------------------------------------------------------- /core/Controller.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zguowei/1/HEAD/core/Controller.class.php -------------------------------------------------------------------------------- /core/Model.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zguowei/1/HEAD/core/Model.class.php -------------------------------------------------------------------------------- /core/MyException.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zguowei/1/HEAD/core/MyException.class.php -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zguowei/1/HEAD/index.php -------------------------------------------------------------------------------- /web/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zguowei/1/HEAD/web/.htaccess -------------------------------------------------------------------------------- /web/controllers/Home.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zguowei/1/HEAD/web/controllers/Home.class.php -------------------------------------------------------------------------------- /web/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zguowei/1/HEAD/web/index.php --------------------------------------------------------------------------------