-
注入对象的方式查看全部
-
thinkphp5 打印环境变量 var_dump($_ENV) 打印出来是空数组的解决 找到php.ini文件,在文件中搜索variables_order = "GPCS",然后将其改为variables_order = "EGPCS",然后再开启或重启服务器使其生效,具体问题config.php里面把app_debug=false才行 http://www.thinkphp.cn/bug/3902.html查看全部
-
<?php namespace app\index\controller; //use think\Config; class Index { // public function __construct(){ // config('before','beforeAction'); // } public function index() { // config('indexAction','index'); // return "this is index index index"; // $conf1 = [ // 'username' => 'glen' // ]; // $conf2 =[ // 'usernames'=>'glengong' // ]; // dump(array_merge($conf1,$conf2)); // 获取配置值 // $res = Config::get(); // $res= Config(); // dump (config()); // $res = Config::get('app_namespace'); // $res=config('app_namespace'); // // dump($res); //设置配置值 // $res=config('username','glen'); // $res=config::set('username','glen'); // dump($res); // // config('username','glen'); // dump(config('username')); // $res= config('username','index_config','index'); // dump($res); // Config('username','index_config','index'); // dump(Config::get('username','index')); } public function demo(){ dump(config()); } }查看全部
-
//在入口文件定义配置文件目录 define('CONF_PATH',__DIR__.'/../app/conf/'); 在index操作显示所以配置 public function index() { // return "this is index index index"; dump (config()); }查看全部
-
TP5 目录和文件开发规范查看全部
-
php -S localhost:8888 router.php 使用命令启动内置的web server in mamp查看全部
-
tp5 install mac for mamp windows for vamp查看全部
-
无model,view展示查看全部
-
request查看全部
-
安装软件查看全部
-
mvc结构查看全部
-
MVC介绍查看全部
-
fetch查看全部
-
Request类的各种方法查看全部
-
$req->domain();//获取域名 $req->pathinfo();//获取路径 $req->method();//获取请求方法查看全部
举报
0/150
提交
取消