|
PHP5中文手册
PDO->quote()(PHP 5 >= 5.1.0, PECL pdo:0.2.1-1.0.3) PDO->quote() — Quotes a string for use in a query. 说明PDO
string quote
( string $string
[, int $parameter_type
] )
PDO->quote() places quotes around the input string (if required) and escapes special characters within the input string, using a quoting style appropriate to the underlying driver. If you are using this function to build SQL statements, you are strongly recommended to use PDO->prepare() to prepare SQL statements with bound parameters instead of using PDO->quote() to interpolate user input into a SQL statement. Prepared statements with bound parameters are not only more portable, more convenient, immune to SQL injection, but are often much faster to execute than interpolated queries, as both the server and client side can cache a compiled form of the query. Not all PDO drivers implement this method (notably PDO_ODBC). Consider using prepared statements instead. 参数
返回值Returns a quoted string that is theoretically safe to pass into an SQL statement. Returns FALSE if the driver does not support quoting in this way. 范例
Example#1 Quoting a normal string
<?php 上例将输出:
Example#2 Quoting a dangerous string
<?php 上例将输出:
Example#3 Quoting a complex string
<?php 上例将输出:
|