|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2001-05-21 16:26 UTC] rasmus@php.net
[2001-05-21 16:32 UTC] mike at newfangled dot com
[2001-05-21 16:35 UTC] mike at newfangled dot com
[2001-05-21 16:35 UTC] rasmus@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Tue Oct 28 17:00:02 2025 UTC |
Trying to set magic_quotes_sybase with ini_set('magic_quotes_sybase', 1 ) even though a ini_get() says the value is set it has no effect on the handling of quotes. I have to set the value to 'on' in the PHP.ini file in order for this to work. I have tried the following without any success. ini_set('magic_quotes_sybase', 1 ) ini_set('magic_quotes_sybase', '1' ) ini_set('magic_quotes_sybase', -1 ) ini_set('magic_quotes_sybase', '-1' ) ini_set('magic_quotes_sybase', true ) ini_set('magic_quotes_sybase', 'on' )