You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
379 B
PHTML
16 lines
379 B
PHTML
11 months ago
|
<?php
|
||
|
|
||
|
class OssConst {
|
||
|
const idcAliyun = 'aliyun'; //阿里机器
|
||
|
const idcJcloud = 'jcloud'; //京东机器
|
||
|
const idcOther = 'other'; //本地测试机器
|
||
|
const idcDcloud = 'dcloud'; //本地测试机器
|
||
|
|
||
|
const idcDcloudOssPathSuffix = '?dc';
|
||
|
const validHttpCode = '200';
|
||
|
|
||
|
public static function getIdcDcloudOssPathPrefix() {
|
||
|
return Zc::C('appName') . '/';
|
||
|
}
|
||
|
}
|