Apache/Nginx为PHP设置、添加$_SERVER服务器环境变量
程序员文章站
2022-04-13 15:04:11
...
需求
在PHP开发中为了区分线上生产环境还是本地开发环境,
如果我们能通过判断$_SERVER['RUNTIME_ENVIROMENT']为 'DEV'还是'PRO'来区分该多好,
可惜的是$_SERVER数组里面根本没有RUNTIME_ENVIROMENT这个元素。
一、通过nginx的fastcgi_param来设置
在nginx配置文件中,可以在nginx总体的配置文件nginx.conf中,也可以在单独的网站配置环境中进行设置,如:www.tomener.com.conf
在配置环境server段location中添加相应的配置信息:
location ~ \.php($|/) {
try_files $uri =404;
fastcgi_pass unix:/tmp/php-cgi.sock;
fastcgi_index index.php;
include fastcgi_params;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
fastcgi_param RUNTIME_ENVIROMENT 'PRO'; # PRO or DEV
}
这里只添加了fastcgi_param RUNTIME_ENVIROMENT 'PRO'一个值,更多可以添加在后面
然后重启重启nginx
nginx -s reload
二、通过php主配置文件php-fpm.conf来设置
这个设置必须放在主配置文件php-fpm.conf里,不能放到include指令设置的子配置文件里,否则会报错:「Array are not allowed in the global section」
我的php-fpm.conf位置在/usr/local/php/etc/php-fpm.conf
直接在配置文件中添加:
env[RUNTIME_ENVIROMENT] = 'PRO'
添加后重启php-fpm
service restart php-fpm
通过上面2种方式添加$_SERVER变量值后,我们就可以直接在php文件中通过$_SERVER来获取相应的变量值了。
不过据说配置信息通过nginx的fastcgi_param来设置的话,当nginx和php交互时,会带来大量的数据传输。
Apache设置环境变量
SetEnv 变量名 变量值
ServerAdmin webmaster@demo.com
DocumentRoot "e:\wwwroot\demo"
ServerName my.demo.com
ErrorLog "logs/my.demo.com-error.log"
CustomLog "logs/my.demo.com-access.log" common
SetEnv RUNTIME_ENVIROMENT DEV
Options Indexes FollowSymLinks
AllowOverride All
Require all granted
参考文档:
http://man.chinaunix.net/newsoft/ApacheManual/mod/mod_env.html#setenv
以上就介绍了Apache/Nginx为PHP设置、添加$_SERVER服务器环境变量,包括了方面的内容,希望对PHP教程有兴趣的朋友有所帮助。
上一篇: Ajax使用Token验证身份
推荐阅读
-
为PHP设置服务器Apache/Nginx环境变量 win7 64 apache apache struts2 apache下
-
为php设置服务器(Apache/Nginx)环境变量
-
Apache/Nginx为PHP设置、添加$_SERVER服务器环境变量
-
为PHP设置服务器(Apache/Nginx)环境变量
-
为PHP设置服务器Apache/Nginx环境变量 win7 64 apache apache struts2 apache下
-
为PHP设置服务器(Apache/Nginx)环境变量
-
Apache/Nginx为PHP设置、添加$_SERVER服务器环境变量
-
为php设置服务器(Apache/Nginx)环境变量