zoukankan      html  css  js  c++  java
  • 巧用PHP双$功能兼容线上线下配置文件

    2014年2月8日 19:27:05

    情景:

    开发过程中线上和线下的配置文件中的值是不一样的

    例如:线上生产环境的样式域名为ie.style.abc.com,而开发环境为ie.style.abc.net

    此时有两种方案:

    一种是将所有以com顶级域名结尾的变量写一份配置文件,以.net结尾的变量写在另一份文件中,在调用的时候根据环境不同而调用不同的文件

    缺点:

    1.文件加载类设计复杂;

    2.维护特别麻烦:如上边例子,如果有chrome.style.abc.com,firefox.style.abc.com... ...那么添加一个变量至少要修改文件数目为总数乘以2(更别说环境中有100+类似这样的文件,每次添加一个变量得需要修改200多个文件)

    第二个方案:

    将公共变量抽离出来,本例中可以抽离那些只有顶级域名不一样的变量

     1 class PublicVar
     2 {
     3     public static function get($varname)
     4     {
     5         if (IS_PRODUCTENV) {
     6             $site = '.style.abc.com';
     7         } else {
     8             $site = '.style.abc.net';
     9         }
    10 
    11         $ie = 'http://ie'.$site;
    12         $chrome = 'http://360'.$site;
    13         $firefox = 'http://firefox'.$site;
    14 
    15         return $$varname;//双$符,类似c语言的&&双取地址符
    16     }
    17 }
    18 
    19 //程序中调用
    20 $domainIE = PublicVar::get('ie');
    21 $domainChrome = PublicVar::get('chrome');
    22 $domainFirefox = PublicVar::get('firefox');
  • 相关阅读:
    openssh升级到openssh-7.5p1踩坑
    office online server部署和简单操作
    aspnetmvc和aspnetcoremvc的一些区别
    office web app server部署和简单操作
    PHP之cURL
    认识PHP的全局变量
    认识Linux系统/etc/hosts
    git学习——stash命令(4)
    Linux netstat命令
    phpstorm+xdebug
  • 原文地址:https://www.cnblogs.com/iLoveMyD/p/3540971.html
Copyright © 2011-2022 走看看