(no version information, might be only in CVS)
PDO::quote --
Quotes a string for use in a query.
Descripción
string
PDO::quote ( string string [, int parameter_type] )
Aviso |
Esta función
es EXPERIMENTAL. Esto significa que el
comportamiento de esta función, el nombre de esta
función y en definitiva TODO lo documentado sobre esta
función, puede cambiar en una futura version de PHP SIN
AVISO. La advertencia queda hecha, y utilizar esta extensión
queda bajo su propia responsabilidad. |
PDO::quote() places quotes around the input
string and escapes and single quotes within the input string, using a
quoting style appropriate to the underlying driver.
If you're using this function to build SQL, it is recommended that you
using prepared statements and bound parameters instead, as it is not only
more convenient, but often much faster.
Not all PDO drivers implement this method (notably PDO_ODBC). Consider
using prepared statements instead.