dump($_ENV")得到的值为空数组怎么回事
<?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
举报