PHP 链式操作的实现
代码如下:
where()->limit()->order();
在 Common 下创建 Database.PHP。
链式操作最核心的地方在于:在方法的最后 return $this;
Database.PHP:
PHP;">
PHP
namespace Common;
class Database{
function where($where){
return $this; //链式方法最核心的地方在于:在每一个方法之后 return $this
}
function order($order){
return $this;
}
function limit($limit){
return $this;
}
}
index.PHP:
原文链接:https://www.f2er.com/php/21690.html