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