|
cubrid_real_escape_string(PECL CUBRID >= 8.3.0) cubrid_real_escape_string — Escape special characters in a string for use in an SQL statement Описание
string cubrid_real_escape_string
( string $unescaped_string
[, resource $conn_identifier
] )
This function returns the escaped string version of the given string. It will escape the following characters: '. In general, single quotations are used to enclose character string. Double quotations may be used as well depending on the value of ansi_quotes, which is a parameter related to SQL statement. If the ansi_quotes value is set to no, character string enclosed by double quotations is handled as character string, not as an identifier. The default value is yes. If you want to include a single quote as part of a character string, enter two single quotes in a row. Список параметров
Возвращаемые значенияEscaped string version of the given string, on success. FALSE on failure. ПримерыПример #1 cubrid_real_escape_string() example
<?php Результат выполнения данного примера: array(1) { ["t"]=> string(95) " !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~" } |
|