set_magic_quotes_runtime

(PHP 4, PHP 5)

set_magic_quotes_runtime — Sets the current active configuration setting of magic_quotes_runtime

Описание

bool set_magic_quotes_runtime ( int $new_setting )

Set the current active configuration setting of magic_quotes_runtime.

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

new_setting

0 for off, 1 for on.

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

Возвращает TRUE в случае успешного завершения или FALSE в случае возникновения ошибки.

Коментарии

get_magic_quotes runtime and set_magic_quotes_runtime are useful when you want to read some data in a binary file using fread() and some bytes in such file may be interpreted as \ (backslash), " (double quotes), ' (simple quote) or any "special" character that has a meaning for string processing.
2003-01-09 07:49:05
http://php5.kiev.ua/manual/ru/function.set-magic-quotes-runtime.html
You should NEVER rely on magic quotes or addslashes for security in an SQL context. You should ALWAYS use proper escape functions, such as mysql_real_escape_string. Failure to do so may result in an SQL injection vulnerability.
2011-10-10 07:14:52
http://php5.kiev.ua/manual/ru/function.set-magic-quotes-runtime.html
Be aware that even using ini_set to set 'magic_quotes_runtime' will stop working in PHP 5.4.  See info.configuration#ini.magic-quotes-runtime
2012-08-02 05:56:28
http://php5.kiev.ua/manual/ru/function.set-magic-quotes-runtime.html
Автор:
A simple check and disabling of magic quotes whenever needed (e.g. if you deploy to multiple servers or you don't know the target server's PHP version).

<?php
if(version_compare(PHP_VERSION'5.3.0''<')){
   
set_magic_quotes_runtime(0);
}
?>
2013-10-08 12:39:12
http://php5.kiev.ua/manual/ru/function.set-magic-quotes-runtime.html

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