1

php链式操作:类似如下实现 $db->where()->limit()->order(); 不使用链式调用时的代码格式如下:

<?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('...');  


zero风来
126 声望3 粉丝