ID: 42457 Updated by: [EMAIL PROTECTED] Reported By: nikhil dot gupta at in dot ibm dot com -Status: Open +Status: Bogus Bug Type: Strings related Operating System: linux, windows PHP Version: 6CVS-2007-08-28 (CVS) New Comment:
Thank you for taking the time to write to us, but this is not a bug. Please double-check the documentation available at http://www.php.net/manual/ and the instructions on how to report a bug at http://bugs.php.net/how-to-report.php . Previous Comments: ------------------------------------------------------------------------ [2007-08-28 20:27:25] judas dot iscariote at gmail dot com Expected behaviuor. all magic_quotes_* functionality has been removed from PHP6, you really dont want this damn magic_quotes_* thing ;) ------------------------------------------------------------------------ [2007-08-28 10:42:58] nikhil dot gupta at in dot ibm dot com Description: ------------ On using ini_set() function to enable PHP directive magic_quotes_sybase, we get bool(false) and directive is not enabled. This behaviour is seen only for php6. On php5, directive gets enabled using ini_set(). Reproduce code: --------------- <?php $str = "how're you?"; var_dump( addslashes($str) ); // turn on PHP directive magic quotes sybase var_dump( ini_set("magic_quotes_sybase", "1") ); var_dump( addslashes($str) ); ?> Expected result: ---------------- string(12) "how\'re you?" string(1) "0" string(12) "how''re you?" Actual result: -------------- string(12) "how\'re you?" bool(false) string(12) "how\'re you?" ------------------------------------------------------------------------ -- Edit this bug report at http://bugs.php.net/?id=42457&edit=1
