db2_escape_string(PECL ibm_db2 >= 1.6.0) db2_escape_string — Used to escape certain characters Описание
string db2_escape_string
( string $string_literal
)
Prepends backslashes to special characters in the string argument. Список параметров
Возвращаемые значенияReturns string_literal with the special characters noted above prepended with backslashes. Примеры
Пример #1 A db2_escape_string() example Result of using the db2_escape_string() function
<?phpРезультат выполнения данного примера: 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: |
||