php链式操作的关键是在做完操作后要return $this;
一、不使用__call2sinx的导数方法实现链式操作
<?phpclass 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; retu呵护世界阅读答案rn $this; } public function limit($_limit='30') { $this->sql["limit"]="limit 0,".$_limit; return $this; } public function lect($_lect='*') { return "lect ".$_lect." ".(implode(" ",$this->sql)); }} $sql =new sql(); echo $sql->from("testtable")->where("id=1")->order("id desc")->limit(10)->lect();//输出 lect * from testtable where id=1 order by id desc limit 0,10?>
二、使用__call方法实现链式操作
__call()在对象调用一个不可访问的方法时会被触发,所以可以实现类的动态方法的创建,实现php的方法重载功能,但它其实是一个语法糖(__construct()方法也是)。
<?phpclass string{ public $value; public function __construct($str=null) { $this->value = $str; } p初一生物教学计划ublic function __call($name, $args) { $this->value = call_ur_func($name, $this->value, $args[0]); return $this; } public function strlen() { return strlen($this->value); }}$s情诗现代诗tr = new string('01389');echo $str->trim('0')->strlen();// 输出结果为 4;trim('0')后$str为"1389"?>
以上就是php链式操作的实现的详细内容
更多内容请访问
怎么从一名码农成为架构师的必看知识点:目录大全(持续更新)50w年薪挑战!
本文发布于:2023-04-08 09:26:58,感谢您对本站的认可!
本文链接:https://www.wtabcd.cn/fanwen/zuowen/000682aec5d9666a603913870ca78b3e.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文word下载地址:php链式操作的实现.doc
本文 PDF 下载地址:php链式操作的实现.pdf
留言与评论(共有 0 条评论) |