PDOStatement::bindParam

(PHP 5 >= 5.1.0, PHP 7, PHP 8, PECL pdo >= 0.1.0)

PDOStatement::bindParam 綁定一個(gè)參數(shù)到指定的變量名

說明

PDOStatement::bindParam(
    mixed $parameter,
    mixed &$variable,
    int $data_type = PDO::PARAM_STR,
    int $length = ?,
    mixed $driver_options = ?
): bool

綁定一個(gè)PHP變量到用作預(yù)處理的SQL語句中的對(duì)應(yīng)命名占位符或問號(hào)占位符。 不同于 PDOStatement::bindValue() ,此變量作為引用被綁定,并只在 PDOStatement::execute() 被調(diào)用的時(shí)候才取其值。

大多數(shù)參數(shù)是輸入?yún)?shù),即,參數(shù)以只讀的方式用來建立查詢。一些驅(qū)動(dòng)支持調(diào)用存儲(chǔ)過程并作為輸出參數(shù)返回?cái)?shù)據(jù),一些支持作為輸入/輸出參數(shù),既發(fā)送數(shù)據(jù)又接收更新后的數(shù)據(jù)。

參數(shù)

parameter

參數(shù)標(biāo)識(shí)符。對(duì)于使用命名占位符的預(yù)處理語句,應(yīng)是類似 :name 形式的參數(shù)名。對(duì)于使用問號(hào)占位符的預(yù)處理語句,應(yīng)是以1開始索引的參數(shù)位置。

variable

綁定到 SQL 語句參數(shù)的 PHP 變量名。

data_type

使用 PDO::PARAM_* 常量明確地指定參數(shù)的類型。要從一個(gè)存儲(chǔ)過程中返回一個(gè) INOUT 參數(shù),需要為 data_type 參數(shù)使用按位或操作符去設(shè)置 PDO::PARAM_INPUT_OUTPUT 位。

length

數(shù)據(jù)類型的長度。為表明參數(shù)是一個(gè)存儲(chǔ)過程的 OUT 參數(shù),必須明確地設(shè)置此長度。

driver_options

返回值

成功時(shí)返回 true, 或者在失敗時(shí)返回 false。

范例

示例 #1 執(zhí)行一條使用命名占位符的預(yù)處理語句

<?php
/* 通過綁定的 PHP 變量執(zhí)行一條預(yù)處理語句  */
$calories 150;
$colour 'red';
$sth $dbh->prepare('SELECT name, colour, calories
    FROM fruit
    WHERE calories < :calories AND colour = :colour'
);
$sth->bindParam(':calories'$caloriesPDO::PARAM_INT);
$sth->bindParam(':colour'$colourPDO::PARAM_STR12);
$sth->execute();
?>

示例 #2 執(zhí)行一條使用問號(hào)占位符的預(yù)處理語句

<?php
/*  通過綁定的 PHP 變量執(zhí)行一條預(yù)處理語句 */
$calories 150;
$colour 'red';
$sth $dbh->prepare('SELECT name, colour, calories
    FROM fruit
    WHERE calories < ? AND colour = ?'
);
$sth->bindParam(1$caloriesPDO::PARAM_INT);
$sth->bindParam(2$colourPDO::PARAM_STR12);
$sth->execute();
?>

示例 #3 使用 INOUT 參數(shù)調(diào)用一個(gè)存儲(chǔ)過程

<?php
/* 使用 INOUT 參數(shù)調(diào)用一個(gè)存儲(chǔ)過程 */
$colour 'red';
$sth $dbh->prepare('CALL puree_fruit(?)');
$sth->bindParam(1$colourPDO::PARAM_STR|PDO::PARAM_INPUT_OUTPUT12);
$sth->execute();
print(
"After pureeing fruit, the colour is: $colour");
?>

參見