在PHP开发中为了区分线上生产环境还是本地开发环境,
如果我们能通过判断$_SERVER['RUNTIME_ENVIROMENT']为 'DEV'还是'PRO'来区分该多好,
可惜的是$_SERVER数组里面根本没有RUNTIME_ENVIROMENT这个元素。
一、通过nginx的fastcgi_param来设置
在nginx配置文件中,可以在nginx总体的配置文件nginx.conf中,也可以在单独的网站配置环境中进行设置,如:aisoa.cn.conf
在配置环境server段location中添加相应的配置信息:
location ~ /.php$ { limit_conn conn_zone 15; limit_req zone=req_zone burst=25 nodelay; try_files $uri /index.php =404; fastcgi_split_path_info ^(.+/.php)(/.+)$; root $root; fastcgi_pass 127.0.0.1:9000; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $root$fastcgi_script_name; include fastcgi_params; fastcgi_param RUNTIME_ENVIROMENT 'PRO'; }
然后重启重启nginx
service nginx reload
二、通过php主配置文件php-fpm.conf来设置
这个设置必须放在主配置文件php-fpm.conf里,不能放到include指令设置的子配置文件里,否则会报错:「Array are not allowed in the global section」
我的php-fpm.conf位置在/etc/php-fpm.conf
直接在配置文件中添加:
env[RUNTIME_ENVIROMENT] = 'PRO'
添加后重启php-fpm
service php-fpm reload
通过上面2种方式添加$_SERVER变量值后,我们就可以直接在php文件中通过$_SERVER来获取相应的变量值了。
不过据说配置信息通过nginx的fastcgi_param来设置的话,当nginx和php交互时,会带来大量的数据传输。
三、通过Apache设置环境变量
SetEnv 变量名 变量值
<VirtualHost *:80> ServerAdmin ... DocumentRoot ... ServerName www.regskynet.com ErrorLog ... CustomLog ... SetEnv RUNTIME_ENVIROMENT PRO <Directory "..."> Options Indexes FollowSymLinks AllowOverride All Require all granted </Directory> </VirtualHost>
四、通过nginx的fastcgi_param来设置$_SERVER环境变量
在nginx配置文件中,可以在nginx总体的配置文件nginx.conf中,也可以在单独的网站配置环境中进行设置,如:www.xxx.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 'production'; # 添加的环境变量 }
这里只添加了fastcgi_param RUNTIME_ENVIROMENT ‘production’一个值,更多可以添加在后面,然后重启重启nginx
官方QQ群号码:922069959(空)、1093596563(空)