绝对飘零
2018-07-21 10:31
<?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"。
快速入门ThinkPHP 5.0--基础篇
58655 学习 · 495 问题
相似问题
回答 1
回答 2