设置前缀
$this Driver_Cache_Driver_File::set_prefix( string $prefix )
参数列表
参数 类型 描述 默认值 $prefixstring$prefix 
$this public function set_prefix($prefix)
{
    if ($prefix)
    {
        $this->prefix = trim($prefix, ' /_') . '/';
    }
    else
    {
        $prefix = '';
    }
    return $this;
}