• 巧用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');
  • 相关阅读:
    C++ sort()函数的用法
    对C++里面 的知识积累:
    codevs 1160
    hdu 1020 Encoding
    poj 2591 Set Definition
    hdu 1505,1506
    hdu 1284 钱币兑换
    hdu 1231 最大连续子序列 ,1003 Max Sum;
    尺取法
    android OTA package packing and extract to partition
  • 原文地址:https://www.cnblogs.com/iLoveMyD/p/3540971.html
Copyright © 2020-2023  润新知