/index.php/OuterMok/Test/index

<?php
//D:\LearnWebDevelop\php\thinkphp_3.2.3_full\Application\OuterMok\Controller\_empty\index.class.php
namespace OuterMok\Controller\_empty;
use Think\Controller;

class index extends Controller{

    // http://localhost/thinkphp323/index.php/OuterMok/Test/index
    // 执行Test控制器的index操作
public function run(){
    header("Content-type: text/html; charset=utf-8");
    echo '执行' . CONTROLLER_NAME . '控制器的' . ACTION_NAME . '操作';
}

}

 

posted @ 2017-12-18 11:31  sky20080101  阅读(104)  评论(0)    收藏  举报