|
mysqli::real_escape_stringmysqli_real_escape_string(PHP 5) mysqli::real_escape_string -- mysqli_real_escape_string — Escapes special characters in a string for use in an SQL statement, taking into account the current charset of the connection ОписаниеОбъектно-ориентированный стиль
string mysqli::real_escape_string
( string $escapestr
)
Процедурный стиль This function is used to create a legal SQL string that you can use in an SQL statement. The given string is encoded to an escaped SQL string, taking into account the current character set of the connection. Список параметров
Возвращаемые значенияReturns an escaped string. ПримерыПример #1 mysqli::real_escape_string() example Объектно-ориентированный стиль
<?php Процедурный стиль
<?php Результат выполнения данных примеров: Error: 42000 1 Row inserted. Примечания
Смотрите также
|
|