根据KEY获取文件路径
null Module_Storage_Driver_File::get_filename_by_key( string $key )
参数列表
参数 类型 描述 默认值 $key
string
$key
protected function get_filename_by_key($key)
{
return $this->dir . $this->prefix . 'storage_' . substr(preg_replace('#[^a-z0-9_\-]*#i','',$key), 0, 50) . '_' . md5($key);
}