pg_escape_string

(PHP 4 >= 4.2.0, PHP 5)

pg_escape_string Экранирование спецсимволов в строке запроса

Описание

string pg_escape_string ([ resource $connection ], string $data )

Функция pg_escape_string() экранирует спецсимволы в строке запроса для базы данных. Она возвращает экранированную строку в формате PostgreSQL. Функция pg_escape_string() является наиболее предпочтительным способом экранирования SQL параметров для PostgreSQL, в то время как addslashes() не должна использоваться с PostgreSQL. Если тип столбца bytea, то должна использоваться функция pg_escape_bytea() вместо pg_escape_string. Функция pg_escape_identifier() должна использоваться для экранирования идентификаторов (например, имена таблиц или полей).

Замечание:

Функция поддерживается PostgreSQL версии 7.2 и выше.

Список параметров

connection

Ресурс подключения к базе данных PostgreSQL. Если параметр connection не задан, будет использовано подключение по умолчанию - последнее соединение, открытое функцией pg_connect() или pg_pconnect().

data

Исходная экранируемая строка.

Возвращаемые значения

Возвращает строку, в которой экранированы все необходимые символы.

Список изменений

Версия Описание
5.2.0 Добавлен аргумент connection

Примеры

Пример #1 Пример использования pg_escape_string()

<?php 
  
// Подключение к базе данных 
  
$dbconn pg_connect('dbname=foo');
  
  
// Чтение текстового файла (содержащего апострофы и обратные слеши)
  
$data file_get_contents('letter.txt');
  
  
// Экранирование спецсимволов в строке 
  
$escaped pg_escape_string($data);
  
  
// Вставка в таблицу базы данных 
  
pg_query("INSERT INTO correspondence (name, data) VALUES ('My letter', '{$escaped}')");
?>

Смотрите также

  • pg_escape_bytea() - Экранирует спецсимволы в строке для вставки в поле типа bytea

Коментарии

Автор:
Creating a double-tick is just fine. It works the same as the backslash-tick syntax. From the PostgreSQL docs:

The fact that string constants are bound by single quotes presents an obvious semantic problem, however, in that if the sequence itself contains a single quote, the literal bounds of the constant are made ambiguous. To escape (make literal) a single quote within the string, you may type two adjacent single quotes. The parser will interpret the two adjacent single quotes within the string constant as a single, literal single quote. PostgreSQL will also allow single quotes to be embedded by using a C-style backslash.
2006-04-24 18:43:46
http://php5.kiev.ua/manual/ru/function.pg-escape-string.html
Автор:
Since php 5.1 the new function pg_query_params() was introduced. With this function you can use bind variables and don't have to escape strings. If you can use it, do so. If unsure why, check the changelog for Postgres 8.0.8.
2006-05-27 19:21:57
http://php5.kiev.ua/manual/ru/function.pg-escape-string.html
For those who escape their single quotes with a backslash (ie \') instead of two single quotes in a row (ie '') there has recently been a SERIOUS sql injection vulnerability that can be employed taking advantage of your chosen escaping method.  More info here: http://www.postgresql.org/docs/techdocs.50
Even after the postgre update, you may still be limited to what you can do with your queries if you still insist on backslash escaping. It's a lesson to always use the PHP functions to do proper escaping instead of adhoc addslashes or magic quotes escaping.
2006-05-30 12:43:07
http://php5.kiev.ua/manual/ru/function.pg-escape-string.html
Автор:
If your database is a UTF-8 database, you will run into problems trying to add some data into your database...

for securty issues and/or compatability you may need to use the: utf_encode() (http://php.net/utf8-encode) function.

for example:
<?php
$my_data 
pg_escape_string(utf8_encode($_POST['my_data']));
?>
2008-02-08 15:23:10
http://php5.kiev.ua/manual/ru/function.pg-escape-string.html
Forthose curious, the exact escaping performed on the string may vary slightly depending on your database configuration.

For example, if your database's standard_conforming_strings variable is OFF, backslashes are treated as a special character and pg_escape_string() will ensure they are properly escaped.  If this variable is ON, backslashes will be treated as ordinary characters, and pg_escape_string() will leave them as-is.  In either case, the behavior matches the configuration of the database connection.
2010-07-22 13:40:33
http://php5.kiev.ua/manual/ru/function.pg-escape-string.html
Автор:
pg_escape_string() won't cast array arguments to the "Array" string like php usually does; it returns NULL instead. The following statements all evaluate to true:

<?php
$a 
= array('foo''bar');

"$a== 'Array';
(string)
$a == 'Array';
$a '' == 'Array';

is_null(pg_escape_string($a));
?>
2011-06-30 15:55:52
http://php5.kiev.ua/manual/ru/function.pg-escape-string.html
You should prefer to use pg_query_params, i.e. use parameterized queries, rather than using pg_escape_string. Or use the newer PDO interface with its parameterized query support.

If you must substitute values directly, e.g. in DDL commands that don't support execution as parameterized queries, do so with pg_escape_literal:

http://au1.php.net/manual/en/function.pg-escape-literal.php

Identifiers can't be used as query parameters. Always use pg_escape_identifier for these if they're substituted dynamically:

http://au1.php.net/manual/en/function.pg-escape-identifier.php

You should not need to change text encodings when using this function. Make sure your connection's client_encoding is set to the text encoding used by PHP, and the PostgreSQL client driver will take care of text encodings for you. No explicit utf-8 conversions should be necessary with a correctly set  client_encoding.
2014-02-25 09:54:57
http://php5.kiev.ua/manual/ru/function.pg-escape-string.html

    Поддержать сайт на родительском проекте КГБ