PHP语言实现流接口模式示例代码

2023-06-01 00:00:00 语言 示例 接口

流接口模式(Fluent Interface)用来编写易于阅读的代码,就像自然语言一样(如英语)


想必大部分人看到这个流接口模式一脸懵,但是在我们日常开发中使用的再频繁不过了.


示例代码:

调用

(new Model())->select(['id', 'name'])->where(['name' => 'test']);


实现

class Model
{
  private $where = [];
  private $fields = [];
  public function where(string $condition) 
  {
      $this->where[] = $condition;
      return $this;
  }
  public function select(array $fields)
  {
      $this->fields = $fields;
      return $this;
  }
 public function __toString()
 {
      return sprintf(
           'SELECT %S FROM test WHERE %s',
           join(', ', $this->fields),
           join(' AND', $this->where)
     );
 }
}


以上就是PHP语言中流接口模式的设计方法实现,

有兴趣的可以自行测试实现一下

相关文章