PHP實現鏈式操作的核心思想_php執行個體

來源:互聯網
上載者:User
PHP 鏈式操作的實現

複製代碼 代碼如下:
$db->where()->limit()->order();

在 Common 下建立 Database.php。

鏈式操作最核心的地方在於:在方法的最後 return $this;

Database.php:

<?phpnamespace Common;class Database{  function where($where){    return $this;  //鏈式方法最核心的地方在於:在每一個方法之後 return $this  }  function order($order){    return $this;  }  function limit($limit){    return $this;  }}

index.php:

<?phpdefine('BASEDIR',__DIR__); //定義根目錄常量include BASEDIR.'/Common/Loader.php';spl_autoload_register('\\Common\\Loader::autoload');$db = new \Common\Database(); //傳統的操作需要多行代碼實現//$db->where('id = 1');//$db->where('name = 2');//$db->order('id desc');//$db->limit(10);//使用鏈式操作,一行代碼解決問題$db->where('id = 1')->where('name = 2')->order('id desc')->limit(10);

在使用鏈式操作時,ide(netbeans 會給出自動提示):

  • 聯繫我們

    該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

    如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.