/**
* InitPHP开源框架 - DEM
* @author zhuli
*/
class helloController extends Controller {
public $initphp_list = array(); //Action白名单
/**
* Hello World DEMO
* 每个Controller都需要继承Controller这个框架基类
*/
public function run() {
echo "<br/><h1>Hello World!This is InitPHP FrameWork</h1>";
$this->view->display("demo/hello_run"); //使用模板
}
}