| 
 | db2_escape_stringUsed to escape certain characters Description
   string db2_escape_string
    ( string  $string_literal)Prepends backslashes to special characters in the string argument. Parameters
 
 Return Values
   Returns  Examples
 Example #1 A db2_escape_string example Result of using the db2_escape_string function 
<?phpThe above example will output: db2_escape_string: All characters: \0 , \n , \r , \\ , \' , \" , \Z . db2_escape_string: Backslash (\\). Single quote (\'). Double quote (\") db2_escape_string: The NULL character \0 must be quoted as well db2_escape_string: Intersting characters: \Z , \0 . db2_escape_string: Nothing to quote db2_escape_string: 200676 db2_escape_string: See Also
 
 |