Manuál PHP | ||
---|---|---|
Předcházející | Další |
(no version information, might be only in CVS)
PDOStatement::bindParam -- Binds a parameter to a the specified variable nameVarování |
Tato funkce je EXPERIMENTÁLNÍ. Chování této funkce, její název a všechno ostatní, co je zde zdokumentováno, se v budoucích verzích PHP může BEZ OHLÁŠENÍ změnit. Berte to v úvahu a používejte tuto funkci na vlastní nebezpečí. |
Binds an SQL statement parameter to the specified variable name. The SQL statement parameter can either be a named placeholder or a question mark placeholder.
Output parameters will set the value of the bound PHP variable to the value returned by the database when the SQL statement is executed. This enables you to call stored procedures with output or input/output parameters, for example, for databases that support such features.
For input-only variables, you can pass an array of input values to PDOStatement::execute() instead.
Příklad 2. Execute a prepared statement with question mark placeholders
|
Předcházející | Domů | Další |
PDOStatement::bindColumn | Nahoru | PDOStatement::columnCount |