controller.php 174 B

123456789101112131415161718
  1. <?php
  2. class Controller
  3. {
  4. public $model;
  5. public $view;
  6. function __construct() {
  7. $this->view = new View();
  8. }
  9. function index()
  10. {
  11. }
  12. }