当前位置:首页 > PHP教程 > php应用 > 列表

php如何按需加载方式来增加程序的灵活度

发布:smiling 来源: PHP粉丝网  添加日期:2022-06-02 14:34:43 浏览: 评论:0 

设计模式的命名啊什么的,我基本上已经忘记得差不多了,我就把我现在表述的这个东西叫做按需加载吧。

需求:

1.我希望有一个配置文件读写类,不需要修改原本这个配置文件读写类就可以实现扩展;

2.这个扩展是比如我原本的配置是txt格式的,但现在我的配置类是php或者是xml等,也可能是json

3.调用接口统一,不管什么类型的配置文件,我调用同样的 一个文件配置读写类就可以了,防止后续的代码很难维护。

那么:

1.首先,想到的是定义一个抽象类,不断的继承,通过继承不用修改这个配置文件读写类;

2.但是,我就不能统一使用这个配置文件读取类了,我调用的是我继承后的这个类;

实现思想:

好了,废话了那么多,我这里就来说一下我的实现思路,其实整个思路还是挺简单的;

  1. /** 
  2.  
  3.  * 定义配置文件读写类,所有的配置文件读写调用此类就可以了,统一接口 
  4.  
  5.  */ 
  6.  
  7. class Config { 
  8.  
  9.     // 读 
  10.  
  11.     public function read($file,$type = 'txt') { 
  12.  
  13.         $instance = $this->getInstance($type); 
  14.  
  15.         $instance->read($file); 
  16.  
  17.     } 
  18.  
  19.     // 写 
  20.  
  21.     public function write($file,$type = 'txt') { 
  22.  
  23.         $instance = $this->getInstance($type); 
  24.  
  25.         $instance->read($file); 
  26.  
  27.     } 
  28.  
  29.     // 删 
  30.  
  31.     public function delete($file,$type = 'txt') { 
  32.  
  33.         $instance = $this->getInstance($type); 
  34.  
  35.         $instance->read($file); 
  36.  
  37.     } 
  38.  
  39.     // 获取实际操作对象实例 
  40.  
  41.     public function getInstance($type = 'txt') { 
  42.  
  43.         $class_name = ucfirst($type).'Config'// 根据文件格式实例化具体的操作类 
  44.  
  45.         if(class_exists($class_name)) { 
  46.  
  47.             $instance = new $class_name
  48.  
  49.         } else { 
  50.  
  51.             throw new Exception('未定义'.$class_name); 
  52.  
  53.         } 
  54.  
  55.         if(is_subclass_of($instance,'BaseConfig') !== 1) { 
  56.  
  57.             throw new Exception('配置文件读写类必须继承BaseConfig'); 
  58.  
  59.         } 
  60.  
  61.         return $instance
  62.  
  63.     } 
  64.  
  65.  
  66. // 定义一个基础操作接口类,后续的文件读写必须继承这个规范 
  67.  
  68. abstract class BaseConfig { 
  69.  
  70.     abstract protected function read($file) {} 
  71.  
  72.     abstract protected function write($file) {} 
  73.  
  74.     abstract protected function delete($file) {} 
  75.  
  76.  
  77. // Text配置文件读写类 
  78.  
  79. TxtConfig extends BaseConfig { 
  80.  
  81.     public function read($file) {} 
  82.  
  83.     public function write($file) {} 
  84.  
  85.     public function delete($file) {} 
  86.  
  87.  
  88. // 其他配置文件读写类。。。 

以上的代码我没测试过,我表达的仅仅是一个思想,当然,基于这种思想还可以设计出更加灵活,可以增加一个数组配置来定义不同的文件分别采用哪个类来读写,时间关系,这个问题后续有时间再更新。

Tags: php加载方式

分享到: