|
php中的連貫操作看起來的確很酷,也非常的方便代碼的閱讀,當(dāng)然了必須是在OOP中用才行,在過程化的程序中,就沒有必要用這種方法了。有實(shí)現(xiàn)這個(gè)方法的有用_CALL來實(shí)現(xiàn)的,而我下面寫的這個(gè)例子,則不是用_call的,大家可以擴(kuò)展一下吧。
下面寫的這個(gè)SQL語句組合類,主要是用于學(xué)習(xí)的,如果有同學(xué)想拿去用,請(qǐng)?jiān)偻晟埔幌隆?/p>
/* * SQL語句組合實(shí)例類,始發(fā)文章web開發(fā)筆記 * 學(xué)習(xí)用,非專業(yè)類 * */class sql{ private $sql=array("from"=>"", "where"=>"", "order"=>"", "limit"=>""); public function from($tableName) { $this->sql["from"]="FROM ".$tableName; return $this; } public function where($_where='1=1') { $this->sql["where"]="WHERE ".$_where; return $this; } public function order($_order='id DESC') { $this->sql["order"]="ORDER BY ".$_order; return $this; } public function limit($_limit='30') { $this->sql["limit"]="LIMIT 0,".$_limit; return $this; } public function select($_select='*') { return "SELECT ".$_select." ".(implode(" ",$this->sql)); }} $sql =new sql(); echo $sql->from("testTable")->where("id=1")->order("id DESC")->limit(10)->select();//輸出 SELECT * FROM testTable WHERE id=1 ORDER BY id DESC LIMIT 0,10
php技術(shù):PHP實(shí)現(xiàn)的連貫操作、鏈?zhǔn)讲僮鲗?shí)例,轉(zhuǎn)載需保留來源!
鄭重聲明:本文版權(quán)歸原作者所有,轉(zhuǎn)載文章僅為傳播更多信息之目的,如作者信息標(biāo)記有誤,請(qǐng)第一時(shí)間聯(lián)系我們修改或刪除,多謝。