dump($_ENV")得到的值為空數(shù)組怎么回事
<?php
namespace app\index\controller;
use think\Config;
use think\Env;
class Index{
public function index(){
dump($_ENV);
}
}
<?php
namespace app\index\controller;
use think\Config;
use think\Env;
class Index{
public function index(){
dump($_ENV);
}
}
2018-07-21
舉報
2018-09-01
出來了,謝謝!大神我們做朋友可好?!
2018-07-23
$_ENV會為空,其原因通常是php的配置文件php.ini的配置項為:variables_order = "GPCS"。
要想讓$_ENV的值不為空,那么variables_order的值應(yīng)該加上一個大寫字母“E”,即:variables_order = "EGPCS"。