1234567891011121314151617 |
- <?php
- // +----------------------------------------------------------------------
- // | ThinkPHP [ WE CAN DO IT JUST THINK ]
- // +----------------------------------------------------------------------
- // | Copyright (c) 2006-2016 http://thinkphp.cn All rights reserved.
- // +----------------------------------------------------------------------
- // | Licensed ( http://www.apache.org/licenses/LICENSE-2.0 )
- // +----------------------------------------------------------------------
- // | Author: 流年 <liu21st@gmail.com>
- // +----------------------------------------------------------------------
- // 应用公共文件
- define('LC_WAN_IPS',json_encode(array('11.17.9.158','60.208.94.155')));
- define('LC_LAN_IPS',json_encode(array('192.168.2.54')));
- define('STATUS_LOCAL',0b01);
- define('STATUS_REMOTE',0b10);
- define('REMOTE_FLAG','remote');
|