|
db2_escape_stringUsed to escape certain characters Beschreibung
string db2_escape_string
( string
$string_literal
)Prepends backslashes to special characters in the string argument. Parameter-Liste
Rückgabewerte
Returns Beispiele
Beispiel #1 A db2_escape_string example Result of using the db2_escape_string function
<?phpDas oben gezeigte Beispiel erzeugt folgende Ausgabe: 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: Siehe auch
|