从一段code说起 “if "BATCH_CONFIG_INI" in os.environ:” 判断环境变量的值有没有定义 如果定义的话就去环境变量的值,否则就取当前目录下的config.ini文件. if "BATCH_CONFIG_INI" in os.environ: print "Using custom ini file!" self.inifile = os.environ["BATCH_CONFIG_INI"]
.sh脚本中,判断某一变量(例如:OEM_CUSTOMER_SUPPORT)是否为某一数值(例如:0),并根据条件做不同处理,写法如下: if [ $OEM_CUSTOMER_SUPPORT -eq 0 ] ; then echo "persist.sys.timezone=Europe/Moscow" --------------这里是设置系统默认时区else echo "persist.sys.timezone=Asia/Shanghai" fi
1.构造函数: 控制器类必须继承了\think\Controller类,才能使用: 方法_initialize 代码: <?php namespace app\lian\controller; use think\Controller; use think\Db; use think\Request; class Index extends Controller { public function _initialize() { echo 'init|||'; } public function