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