为什么dump($_ENV);并没有像视频里面输出一大串系统环境变量

来源:2-12 环境变量的配置和使用

qq_ionicRoyKent_04116743

2017-05-21 09:39

为什么dump($_ENV);并没有像视频里面输出一大串系统环境变量

写回答 关注

9回答

  • Z269
    2017-09-25 10:19:24

    array (size=35)
     'ALLUSERSPROFILE' => string 'C:\ProgramData' (length=14)
     'APPDATA' => string 'C:\Windows\system32\config\systemprofile\AppData\Roaming' (length=56)
     'CommonProgramFiles' => string 'C:\Program Files\Common Files' (length=29)
     'CommonProgramFiles(x86)' => string 'C:\Program Files (x86)\Common Files' (length=35)
     'CommonProgramW6432' => string 'C:\Program Files\Common Files' (length=29)
     'COMPUTERNAME' => string 'QH-20170306XFDG' (length=15)
     'ComSpec' => string 'C:\Windows\system32\cmd.exe' (length=27)
     'FP_NO_HOST_CHECK' => string 'NO' (length=2)
     'LOCALAPPDATA' => string 'C:\Windows\system32\config\systemprofile\AppData\Local' (length=54)
     'NUMBER_OF_PROCESSORS' => string '4' (length=1)
     'OS' => string 'Windows_NT' (length=10)
     'Path' => string 'C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;F:\wamp\bin\php\php5.5.12;C:\ProgramData\ComposerSetup\bin;' (length=159)
     'PATHEXT' => string '.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC' (length=53)
     'PROCESSOR_ARCHITECTURE' => string 'AMD64' (length=5)
     'PROCESSOR_IDENTIFIER' => string 'Intel64 Family 6 Model 37 Stepping 5, GenuineIntel' (length=50)
     'PROCESSOR_LEVEL' => string '6' (length=1)
     'PROCESSOR_REVISION' => string '2505' (length=4)
     'ProgramData' => string 'C:\ProgramData' (length=14)
     'ProgramFiles' => string 'C:\Program Files' (length=16)
     'ProgramFiles(x86)' => string 'C:\Program Files (x86)' (length=22)
     'ProgramW6432' => string 'C:\Program Files' (length=16)
     'PSModulePath' => string 'C:\Windows\system32\WindowsPowerShell\v1.0\Modules\' (length=51)
     'PUBLIC' => string 'C:\Users\Public' (length=15)
     'SystemDrive' => string 'C:' (length=2)
     'SystemRoot' => string 'C:\Windows' (length=10)
     'TEMP' => string 'C:\Windows\TEMP' (length=15)
     'TMP' => string 'C:\Windows\TEMP' (length=15)
     'USERDOMAIN' => string 'WORKGROUP' (length=9)
     'USERNAME' => string 'QH-20170306XFDG$' (length=16)
     'USERPROFILE' => string 'C:\Windows\system32\config\systemprofile' (length=40)
     'windir' => string 'C:\Windows' (length=10)
     'windows_tracing_flags' => string '3' (length=1)
     'windows_tracing_logfile' => string 'C:\BVTBin\Tests\installpackage\csilogfile.log' (length=45)
     '_DFX_INSTALL_UNSIGNED_DRIVER' => string '1' (length=1)
     'AP_PARENT_PID' => string '6132' (length=4)

  • 茶花烙
    2017-07-18 13:59:00

    我执行代码:

    dump($_ENV);

    结果并没有我在.env里面设置的 status=dev

    但是我使用

    dump(Env::get('status'));

    就能取到值

    这是啥情况呢?

    茶花烙 回复meng99

    没有哦

    2017-09-21 14:27:13

    共 3 条回复 >

  • qq_WOLFandPHp_03597452
    2017-06-30 01:20:01

    有用谢谢

  • 无声4068820
    2017-06-07 22:10:04

    请教一下这是怎么回事

    D:\wamp64\www\thinkphp\thinkphp\library\think\Debug.php:165:null

  • qq_万有引力_0
    2017-06-02 14:06:16

    D:\wamp64\www\tp5\app\index\controller\Index.php:25:

    array (size=0)

      empty


  • OrangBus
    2017-05-31 21:14:01

    我的php.ini文件的variables_order值一直为"EGPCS",但是输出的时候还是一个空数组

    D:\wamp64\www\tp5\app\index\controller\Index.php:25:
    array (size=0)
      empty


  • 晨星4
    2017-05-24 22:00:04

    OK好了,还需要重启一下服务器


  • 晨星4
    2017-05-24 21:58:32

    为什么修改了php.ini文件的variables_order值为"EGPCS",还是不行呢

  • 簡單劇夲
    2017-05-21 12:10:38

    你可以修改php.ini文件的variables_order值为"EGPCS"。这时,$_ENV的值就可以取得了 

快速入门ThinkPHP 5.0--基础篇

ThinkPHP5已发布多时,想了解ThinkPHP5的新特性吗?老司机带你马上出发~

58655 学习 · 495 问题

查看课程

相似问题