PHP 8.3.4 Released!

PHP Options/Info Functions

Table of Contents

add a note

User Contributed Notes 2 notes

up
-3
gilthansNOSPAAM at gmailSPAAMBLOCK dot com
19 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
-6
Mark
19 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