1,设置
通过 /etc/profile, /etc/environment, ~/.profile,~/.bash_profile等文件进行设置
如果要通过$_ENV获取,则在PHP服务启动是加载相关配置
2,编写
打开 /etc/php-fpm.conf 文件
在尾部加入
env[PHP_ENV] = test
重启服务
service php-fpm restart
3,可能遇到的问题
提示php-fpm7.sock文件端口或者相关进程占用端口
kill掉端口,或者删除文件,再次重启
打开php.ini文件
variables_order 默认值为 GPCS (开启 POST,GET,Cookies,Server缩写)
修改其值为 EGPCS (增加ENV)
在PHP代码通过 $_ENV['PHP_ENV'] 或者 getenv('PHP_ENV')函数进行获取变量
扫码关注腾讯云开发者
领取腾讯云代金券
Copyright © 2013 - 2025 Tencent Cloud. All Rights Reserved. 腾讯云 版权所有
深圳市腾讯计算机系统有限公司 ICP备案/许可证号:粤B2-20090059 深公网安备号 44030502008569
腾讯云计算(北京)有限责任公司 京ICP证150476号 | 京ICP备11018762号 | 京公网安备号11010802020287
Copyright © 2013 - 2025 Tencent Cloud.
All Rights Reserved. 腾讯云 版权所有