Нема описа
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

123456789101112131415161718192021222324252627282930313233
  1. <?php
  2. namespace think;
  3. // 分布式文件存储类
  4. class Storage {
  5. /**
  6. * 操作句柄
  7. * @var string
  8. * @access protected
  9. */
  10. static protected $handler ;
  11. /**
  12. * 连接分布式文件系统
  13. * @access public
  14. * @param string $type 文件类型
  15. * @param array $options 配置数组
  16. * @return void
  17. */
  18. static public function connect($type='File',$options=array()) {
  19. $class = 'think\\storage\\driver\\'.ucwords($type);
  20. self::$handler = new $class($options);
  21. }
  22. static public function __callstatic($method,$args){
  23. //调用缓存驱动的方法
  24. if(method_exists(self::$handler, $method)){
  25. return call_user_func_array(array(self::$handler,$method), $args);
  26. }
  27. }
  28. }