thinkphp笔记

index.php

define('APP_DEBUG',true);开启调试模式 关闭缓存

/Conf/config.php

return array(

'username'=xuyaoxiang

)

Indexclass.php

class IndexAction extends Action{

public function index(){
    echo C('username');
}

}

你可能感兴趣的:(thinkphp笔记)