赛亿提成统计系统

Controller.php 309B

    <?php namespace daswork; use daswork\View; class Controller { protected $view; public function __construct(){ $this->view = new View(); } public function fetch($file=""){ return $this->view->fetch(); } public function assign($name,$value) { return $this->view->assign($name,$value); } }