ID: 42457
Comment by: judas dot iscariote at gmail dot com
Reported By: nikhil dot gupta at in dot ibm dot com
Status: Open
Bug Type: Strings related
Operating System: linux, windows
PHP Version: 6CVS-2007-08-28 (CVS)
New Comment:
Expected behaviuor. all magic_quotes_* functionality has been removed
from PHP6, you really dont want this damn magic_quotes_* thing ;)
Previous Comments:
------------------------------------------------------------------------
[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