(no version information, might be only in CVS)
PDOStatement::bindParam --
Binds a parameter to a the specified variable name
Descrizione
bool
PDOStatement::bindParam ( mixed parameter, mixed &variable [, int data_type [, int length]] )
Avvertimento |
Questa funzione è
SPERIMENTALE. Ovvero, il comportamento di questa funzione,
il nome di questa funzione, in definitiva tutto ciò che è documentato qui
può cambiare nei futuri rilasci del PHP senza preavviso. Siete avvisati, l'uso di questa
funzione è a vostro rischio. |
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.