php链式操作的实现
发布:smiling 来源: PHP粉丝网 添加日期:2022-06-04 09:17:48 浏览: 评论:0
php链式操作的关键是在做完操作后要return $this;
一、不使用__call方法实现链式操作
- class Sql{
- private $sql=array("from"=>"",
- "where"=>"",
- "order"=>"",
- "limit"=>"");
- public function from($tableName) {
- $this->sql["from"]="FROM ".$tableName;
- return $this;
- }
- public function where($_where='1=1') {
- $this->sql["where"]="WHERE ".$_where;
- return $this;
- }
- public function order($_order='id DESC') {
- $this->sql["order"]="ORDER BY ".$_order;
- return $this;
- }
- public function limit($_limit='30') {
- $this->sql["limit"]="LIMIT 0,".$_limit;
- return $this;
- }
- public function select($_select='*') {
- return "SELECT ".$_select." ".(implode(" ",$this->sql));
- }
- }
- $sql =new Sql();
- echo $sql->from("testTable")->where("id=1")->order("id DESC")->limit(10)->select();
- //输出 SELECT * FROM testTable WHERE id=1 ORDER BY id DESC LIMIT 0,10
- ?>
二、使用__call方法实现链式操作
__call()在对象调用一个不可访问的方法时会被触发,所以可以实现类的动态方法的创建,实现php的方法重载功能,但它其实是一个语法糖(__construct()方法也是)。
- class String
- {
- public $value;
- public function __construct($str=null)
- {
- $this->value = $str;
- }
- public function __call($name, $args)
- {
- $this->value = call_user_func($name, $this->value, $args[0]);
- return $this;
- }
- public function strlen()
- {
- return strlen($this->value);
- }
- }
- $str = new String('01389');
- echo $str->trim('0')->strlen();
- // 输出结果为 4;trim('0')后$str为"1389"
- ?>
Tags: php链式操作
- 上一篇:关于PHP+jQuery-ui拖动浮动层排序并保存到数据库实例
- 下一篇:最后一页
相关文章
- ·PHP实现链式操作的核心思想(2021-06-02)
- ·PHP实现链式操作的三种方法详解(2021-08-20)
推荐文章
热门文章
最新评论文章
- 写给考虑创业的年轻程序员(10)
- PHP新手上路(一)(7)
- 惹恼程序员的十件事(5)
- PHP邮件发送例子,已测试成功(5)
- 致初学者:PHP比ASP优秀的七个理由(4)
- PHP会被淘汰吗?(4)
- PHP新手上路(四)(4)
- 如何去学习PHP?(2)
- 简单入门级php分页代码(2)
- php中邮箱email 电话等格式的验证(2)