|
cubrid_real_escape_stringEscape special characters in a string for use in an SQL statement Description
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: Parameters
Return ValuesEscaped string version of the given string, on success.
ExamplesExample #1 cubrid_real_escape_string example
<?php The above example will output: array(1) { ["t"]=> string(95) " !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~" } |