### 开发版本管理
**测试服务器:** 为了有效的管理在开发中的代码管理,将代码进行开发中调试的代码和预发布进行全局测试的代码进行分开管理,有效的规则代码。
**线上服务器:** 线上在稳定运行中的代码,在有新的需求后,进行迭代开发,不影响到线上本身的业务稳定运行,在小范围内进行灰度发布上线,哪怕有错误,也把错误问题带来的影响降低到最小。
**位置:** \Application\Common\Controller\gBaseController.class.php
**调用:**
```
use Common\Controller\BaseController; // 加载基类
$publish = $this->getPublishVersion();
// 调用控制方法
// 新开发的业务,在开发中把代码放在里面
if ($publish == 'develop') {
echo 'develop'; // 开发中代码
}
// 开发完成后,预发布到测试服务器进行集中测试
if ($publish == 'release') {
echo 'release'; // 开发完成后集中测试代码
}
// 灰度发布到线上进行
if ($publish == 'gray_release') {
echo 'gray release'; // 发布线上小部分开放,灰度发布上线
}
```
**访问控制:**
在代码开发完成后,需要访问代码,在 / 系统管理 / 版本发布 中进行配置,指定的人员进行有限权限的访问指定代码,从而不影响整体稳定运行。
1、开发中和预发布,可适用在测试服务器,灰度发布在测试服务器无法访问。
2、灰度发布只适用于线上服务器访问,开发中和预发布在线上服务器也是无法访问的。
**完整代码:**
```
/**
* 发布版本控制
* jig 2020-12-16
*
* @return string
*/
public function getPublishVersion () {
$version_where = array(
'is_delete' => '0',
'test_phone' => session('userInfo.mobile'),
'test_url' => MODULE_NAME.'/'.CONTROLLER_NAME.'/'.ACTION_NAME,
);
$code_version = M('code_version')->where($version_where)->find();
if (C('SYSTEM_VERSION') == 1) { // 测试服务器
if ($code_version['version_type'] == 1) {
return 'develop'; // 开发中
} else if ($code_version['version_type'] == 2) {
return 'release'; // 预发布
}
} else if (C('SYSTEM_VERSION') == 2) { // 线上服务器
if ($code_version['version_type'] == 3) {
return 'gray_release'; // 灰度发布
}
}
}
```
- 模版
- 前言
- 项目架构
- 项目规范
- HTML
- CSS
- Javascript
- PHP
- MySQL
- 注意规范
- 开发版本管理
- 开发流程
- 系统配置
- 阿里云服务器配置
- 计划任务配置说明
- 开发示例
- Page分页
- Search_param搜索结果赋值
- Add新增
- Edit编辑
- Ajax表单验证
- Ajax二级联动
- Excel 导出数据首位不去0的方法
- POS总部控制
- 下载CSV格式的模板
- 订单唯一码表和订单SKU表实收金额生成
- 快捷日期选择
- JS函数
- ajax_send
- ajax_result
- createQrCodes
- createBarCodes
- printTpl
- JS插件
- BootstrapValidator表单验证插件
- Address省市区插件
- Bootstrap-datepicker日期插件
- Bootstrap-select多选框插件
- Toastr消息提示插件
- PalyAudit扫描声音提示插件
- WebUploader多图片上传插件
- Ueditor富文本编辑器插件
- Function
- alert
- object_to_array
- array_to_object
- get_address
- set_param_url
- get_shops_name
- get_user_name
- get_warehouse
- get_cheapest_sku
- print_attr(新)
- print_img(新)
- get_spu_no(新)
- get_type_name(新)
- get_brand_en(新)
- get_cat_name(新)
- get_attr_name(新)
- spu_cat_info(新)
- get_time_event_price
- get_vendors
- check_total_reduce
- check_total_discount
- get_inventory
- get_delivery
- get_sale_inventory
- get_customer_name
- phone_protection
- get_order_no
- get_event_name
- get_order_status
- get_item_status
- get_ditch_name
- get_card_no
- get_shop_sales
- get_pay_name
- get_season
- amt_format
- get_cat_parent
- print_attr_id
- round_bcadd
- round_bcsub
- round_bcmul
- round_bcdiv
- get_account_name
- Controller
- Common_BaseController
- check_membership_card
- get_menu_list
- importErrorMassage
- Wpos_IndexController
- get_customer_vip_card
- get_shops_id
- calculate_active_integral
- check_numbers_active
- check_goods_active
- Woms_IndexController
- Model
- View
- category
- cycle_date.html
- shop_select门店多选搜索框
- 品牌A-Z排序多选brand_mc.html
- 供应商代码A-Z排序vendor_no_mc.html
- Lib
- BuyerLib
- WarehouseLib
- EventLib
- getTimeEventPrice
- getVipType
- getEvent
- orderTotalEvent
- orderTimeEvent
- getTotalReduce
- getTotalDiscount
- SaleLib
- CustomerLib
- addCustomerService
- GiftcardLib
- WechatLib
- wxRefund
- OrdersLib
- orderLog
- calculatePayinAmount
- calculateSubtotal
- correctPayinAmount
- saveOrderAddress
- getOrderAddress
- setDeliveryNo
- SyncLib
- updateOuterStock
- UserLib
- createCommission
- FlowLib
- orderList
- addOrder
- addLog
- orderInfo
- checkSku
- orderSave
- orderStop
- orderExecute
- skuEdit
- orderPrinta
- scanGoods
- boxClose
- orderOut
- take
- bview
- check
- deliveryStatus
- checkGoods
- GoodsLib
- createGoodsNo
- createNewGoodsNo
- getSystemStyleNo
- getDim
- MallLib
- smsLog
- GoodsBaseLib
- getBrandInfo
- getBrandsInfo
- getAttrIdArray
- getPrintAttr
- getMustAttr
- getCatIdInfo
- valTypeId
- valsTypeId
- getCatNoInfo
- getCatInfo
- getAttrArr
- getAttrInfo
- getValInfo
- getAttrId
- getValId
- getAttrSeaon
- getValueId
- PointsLog
- pointsIn
- pointsUp
- EcGoodsLib
- getSkuInventory
- Tools
- CsvTools
- csvImport
- csvExport
- ExcelTools
- importExcel
- exportExcel
- exportHeadExcel
- MailTools
- SmsTools
- sendMessage
- UploadTools
- ExportTools
- exportData
- TaobaoTools
- getOnsaleItems
- getSkusItems
- PicturesTools
- uploadPicture
- Plugins
- WxBase
- Taobao
- 问题反馈