本文整理汇总了PHP中Storage::handler方法的典型用法代码示例。如果您正苦于以下问题:PHP Storage::handler方法的具体用法?PHP Storage::handler怎么用?PHP Storage::handler使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Storage
的用法示例。
在下文中一共展示了Storage::handler方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: getInstance
public static function getInstance($type = 'File', $options = array())
{
if (self::$handler === null) {
$class = 'Driver_Storage_' . $type;
self::$handler = new $class($options);
}
return self::$handler;
}
示例2: connect
public static function connect($Driver = '')
{
$Driver = empty($Driver) ? C('STORAGE_DRIVER') : $Driver;
$class = $Driver . 'Storage';
self::$handler = new $class();
}
示例3: connect
/**
* 连接分布式文件系统
* @access public
* @param string $type 文件类型
* @param array $options 配置数组
* @return void
*/
public static function connect($type = 'File', $options = array())
{
require_once "Storage/Driver/" . ucwords($type) . ".class.php";
$class = $type;
self::$handler = new $class($options);
}