mirror of
https://gitee.com/ShopeX/OMS
synced 2026-03-22 18:35:35 +08:00
26 lines
430 B
PHP
26 lines
430 B
PHP
<?php
|
||
/**
|
||
* Copyright © ShopeX (http://www.shopex.cn). All rights reserved.
|
||
* See LICENSE file for license details.
|
||
*/
|
||
|
||
|
||
interface base_interface_storager{
|
||
|
||
|
||
function save($file,&$url,$type,$name,$ext_name="");
|
||
|
||
function replace($file,$id);
|
||
|
||
function remove($id);
|
||
|
||
function getFile($id,$type);
|
||
|
||
|
||
/*function store($file, $ident, $size='');
|
||
|
||
function delete($ident);
|
||
|
||
function fetch($ident);*/
|
||
}
|