### 開發版本管理
**測試服務器:** 為了有效的管理在開發中的代碼管理,將代碼進行開發中調試的代碼和預發布進行全局測試的代碼進行分開管理,有效的規則代碼。
**線上服務器:** 線上在穩定運行中的代碼,在有新的需求后,進行迭代開發,不影響到線上本身的業務穩定運行,在小范圍內進行灰度發布上線,哪怕有錯誤,也把錯誤問題帶來的影響降低到最小。
**位置:** \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
- 問題反饋