91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

php鏈式操作的實現方法

發布時間:2020-03-20 17:00:36 來源:億速云 閱讀:207 作者:小新 欄目:編程語言

php鏈式操作的關鍵是在做完操作后要return $this;

一、不使用__call方法實現鏈式操作

<?php
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
?>

二、使用__call方法實現鏈式操作

__call()在對象調用一個不可訪問的方法時會被觸發,所以可以實現類的動態方法的創建,實現php的方法重載功能,但它其實是一個語法糖(__construct()方法也是)。

<?php
class String
{
    public $value;

    public function __construct($str=null)
    {
        $this->value = $str;
    }

    public function __call($name, $args)
    {
        $this->value = call_user_func($name, $this->value, $args[0]);
        return $this;
    }

    public function strlen()
    {
        return strlen($this->value);
    }
}
$str = new String('01389');
echo $str->trim('0')->strlen();
// 輸出結果為 4;trim('0')后$str為"1389"
?>

以上就是php鏈式操作的實現方法的詳細內容,如果想了解更多請關注億速云其它相關文章!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

php
AI

定陶县| 江油市| 鱼台县| 台安县| 武邑县| 曲周县| 金昌市| 太康县| 屯留县| 长沙县| 神池县| 上蔡县| 杂多县| 栖霞市| 志丹县| 云梦县| 思南县| 科技| 五河县| 望谟县| 邯郸市| 香河县| 九台市| 玉山县| 南昌市| 郧西县| 平度市| 将乐县| 屯留县| 合水县| 内江市| 五河县| 乐都县| 清新县| 新野县| 平遥县| 资源县| 赤城县| 吉首市| 道真| 太康县|