We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eeabc16 commit a8c38b9Copy full SHA for a8c38b9
src/Qiniu/Config.php
@@ -13,6 +13,7 @@ final class Config
13
const API_HOST = 'http://api.qiniu.com'; // 数据处理操作Host
14
15
public static $upHost; // 上传Host
16
+ public static $upBackupHost; // 上传备用Host
17
public static $zone; // 设置上传的Zone
18
19
public function __construct() // 构造函数,默认为zone0
@@ -25,6 +26,7 @@ public static function setZone(Zone $z)
25
26
{
27
self::$zone = $z;
28
self::$upHost = $z::$upHost;
29
+ self::$upBackupHost = $z::$upBackupHost;
30
return;
31
}
32
0 commit comments