使用链式调用时的代码格式
<?php
namespace Database;
class Database
{
public function where($where)
{
return $this;
}
public function order($order)
{
return $this;
}
public function limit($limit)
{
return $this;
}
}
<pre name="code" class="php">//代码调用
$db = new Database\Database();
$db->where('...')->order('...')->limit('...');
总结,链式调用核心部分,在每一个方法后return $this;那么$this是什么呢?是Database类的对象