PHP YII手寫帶參數sql的執行

來源:互聯網
上載者:User

以下是一個例子,參數sql的執行,採用綁定參數的方式,這樣可以防止注入語句:

/** * Add score, true if successful, false if failed. * @param  $userId * @param  $topicId * @param  $score * @param  $msg */public function addScore($userId, $topicId, $scoreFrom, $score, $msg){    try    {        $curTime = date('Y-m-d H:i:s');                                       $sql = "insert into user_scores (user_id, topic_id, score_from, score_num, score_message, create_time) ";        $sql .= " values (:userId, :topicId, :scoreFrom, :score ,:msg, :create_time)";        $connection = Yii::app()->db;        $command=$connection->createCommand($sql);        $command->bindParam(":userId",$userId,PDO::PARAM_STR);        $command->bindParam(":topicId",$topicId,PDO::PARAM_INT);        $command->bindParam(":scoreFrom",$scoreFrom,PDO::PARAM_STR);              $command->bindParam(":score",$score,PDO::PARAM_INT);        $command->bindParam(":msg",$msg,PDO::PARAM_STR);        $command->bindParam(":create_time",$curTime);        $rowCount=$command->execute();        if($rowCount == 1)            return true;        else            return false;    }    catch(Exception $e)    {        return false;    }    }


關於PDO屬性列表:

PDO::PARAM_BOOL

表示一個布爾類型

PDO::PARAM_NULL

表示一個SQL中的NULL類型

PDO::PARAM_INT

表示一個SQL中的INTEGER類型

PDO::PARAM_STR

表示一個SQL中的SQL CHAR,VARCHAR類型

PDO::PARAM_LOB

表示一個SQL中的large object類型

PDO::PARAM_STMT

表示一個SQL中的recordset類型,還沒有被支援

PDO::PARAM_INPUT_OUTPUT

Specifies that the parameter is an INOUT parameter for a stored procedure. You must bitwise-OR this value with an explicit PDO::PARAM_* data type.


本文出自 “小何貝貝的技術空間” 部落格,請務必保留此出處http://babyhe.blog.51cto.com/1104064/1290499

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.