mirror of
https://gitee.com/ShopeX/OMS
synced 2026-03-23 19:05:34 +08:00
25 lines
541 B
PHP
Executable File
25 lines
541 B
PHP
Executable File
<?php
|
||
/**
|
||
* Copyright © ShopeX (http://www.shopex.cn). All rights reserved.
|
||
* See LICENSE file for license details.
|
||
*/
|
||
|
||
/**
|
||
* 文件生成存储抽象类
|
||
*
|
||
* @author kamisama.xia@gmail.com
|
||
* @version 0.1
|
||
*/
|
||
|
||
abstract class taskmgr_storage_abstract {
|
||
|
||
//saas定义的是用户域名
|
||
private function kvprefix() {
|
||
return (defined('KV_PREFIX')) ? KV_PREFIX : 'default';
|
||
}
|
||
|
||
//根据参数生成文件名
|
||
public function _ident($key){
|
||
return md5(microtime().$this->kvprefix()).$key.'.csv';
|
||
}
|
||
} |