【PHP】简易系统环境控制
引入:同一套系统,可能会有开发环境、测试环境、线上环境,不同的环境会有对应的域名,为了方便管理,在代码中会有一个标识执行环境(PHP_RUN_ENV),根据不同的环境,配置不同的数据库、接口域名等。
1、Nginx为PHP设置、添加$_SERVER服务器环境变量:在nginx总体的配置文件nginx.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 PHP_RUN_ENV site; }
2、为了方便查询当前的环境,在环境变量中也加入设置(手动保持一致)
# vim /etc/profile.d/php_run_env.sh export PHP_RUN_ENV=test
3、在代码中进行环境校验如:
‘notifyUrl‘ => (! empty($_SERVER[‘PHP_RUN_ENV‘]) && $_SERVER[‘PHP_RUN_ENV‘] == ‘com‘) ? ‘https://www.lanse1993.com/xmApi/Pay/wxPayNotifyUrl‘ : ‘http://test-www.lanse1993.com/xmApi/Pay/wxPayNotifyUrl‘,
这是一个简易的使用,主要是控制环境,代码中涉及到域名、debug等因环境需要不同配置的,都可以统一管理
相关推荐
Noneyes 2020-11-10
zyyjay 2020-11-09
xuebingnan 2020-11-05
samtrue 2020-11-22
stefan0 2020-11-22
yifangs 2020-10-13
songshijiazuaa 2020-09-24
hebiwtc 2020-09-18
天步 2020-09-17
83911535 2020-11-13
whatsyourname 2020-11-13
zhouyuqi 2020-11-10
mathchao 2020-10-28
王志龙 2020-10-28
wwwsurfphpseocom 2020-10-28
diskingchuan 2020-10-23
savorTheFlavor 2020-10-23