<?php /** * Created by PhpStorm. * User: Administrator * Date: 2017/12/1 * Time: 16:56 */ namespace app\index\controller; use think\Config; class Index { public function index() { //獲取config的值 /*$res = Config::get('app_namespace');*/ $res = config('app_namespace');//助手函數(shù)方式 dump($res); //設(shè)置config的值 //Config::set('username','John~~~'); config('username','John~~');//助手函數(shù)方式 dump(Config::get('username')); //作用域 //Config::set('username','John','index'); config('username','John','index');//助手函數(shù)方式 dump(Config::get('username','index')); //檢車是否有此配置 config('username','John');//先設(shè)置,后判斷 //$res = Config::has('username'); $res = config('?username');//助手函數(shù)方式 dump($res); } }