1. 使用链式调用时的代码格式
    2. <?php
    3. namespace Database;
    4. class Database
    5. {
    6. public function where($where)
    7. {
    8. return $this;
    9. }
    10. public function order($order)
    11. {
    12. return $this;
    13. }
    14. public function limit($limit)
    15. {
    16. return $this;
    17. }
    18. }
    19. <pre name="code" class="php">//代码调用
    20. $db = new Database\Database();
    21. $db->where('...')->order('...')->limit('...');
    22. 总结,链式调用核心部分,在每一个方法后return $this;那么$this是什么呢?是Database类的对象