parent root
PHP: PHP Options/Info Functions - Manual
PHP 7.2.23 Release Announcement

PHP Options/Info Functions

Table of Contents

add a noteadd a note

User Contributed Notes 2 notes

up
0
gilthansNOSPAAM at gmailSPAAMBLOCK dot com
14 years ago
Note: when magic_quotes_gpc is ON, it will also slash values inside both $_SERVER['QUERY_STRING'] and $_SERVER['SCRIPT_NAME'] (and equivalents) will also be slashed.
up
-8
Mark
15 years ago
You probably don't want to set "magic_quotes_runtime" because it affects even binary file read/write operations. This is especially problematic if you include someone else's library that depends on binary read/write. If you enable "magic_quotes_runtime", be sure to use set_magic_quotes_runtime() function call to disable it before calling someone else's library that does binary read/write.
To Top
parent root