<?php
namespace app\index\controller;
use think\Config;
use think\Env;
class Index{
public function index(){
dump($_ENV);
}
}
出来了,谢谢!大神我们做朋友可好?!
$_ENV会为空,其原因通常是php的配置文件php.ini的配置项为:variables_order = "GPCS"。
要想让$_ENV的值不为空,那么variables_order的值应该加上一个大写字母“E”,即:variables_order = "EGPCS"。