初始化仓库

This commit is contained in:
wangxiaowei
2025-04-22 14:09:52 +08:00
commit 8b100110bb
5155 changed files with 664201 additions and 0 deletions

View File

@ -0,0 +1,39 @@
<?php
namespace Qcloud\Cos\ImageParamTemplate;
class CIParamTransformation extends ImageTemplate{
private $tranParams;
private $tranString;
private $spilt;
public function __construct($spilt = "|") {
parent::__construct();
$this->spilt = $spilt;
$this->tranParams = array();
$this->tranString = "";
}
public function addRule(ImageTemplate $template) {
if($template->queryString()){
$this->tranParams[] = $template->queryString();
}
}
public function queryString() {
if($this->tranParams) {
$this->tranString = implode($this->spilt, $this->tranParams);
}
return $this->tranString;
}
public function resetRule() {
$this->tranParams = array();
$this->tranString = "";
}
public function defineRule($value) {
$this->tranParams[] = $value;
}
}