Re: [PHP] ini-options

2002-05-23 Thread Dennis Gearon
I should have added: "... that worked before PHP4". But thanks, see my previous post to this. Philip Olson wrote: > > > if only there were, 'get_magic_quotes_sysbase();' > > happy birthday ;) > > function get_magic_quotes_sybase() > { > if (!ini_get('magic_quotes_sybase')) { > retu

Re: [PHP] ini-options

2002-05-23 Thread Philip Olson
> if only there were, 'get_magic_quotes_sysbase();' happy birthday ;) function get_magic_quotes_sybase() { if (!ini_get('magic_quotes_sybase')) { return 0; } else { return 1; } } feature requests can be submitted at: http://bugs.php.net/ regards, Philip Olson

Re: [PHP] ini-options

2002-05-22 Thread Dennis Gearon
What version was magic_quotes_sybase added? -- - Joy is just a thing (to be).. raised on, Love is just the way to Live and Die, John Denver. - He

Re: [PHP] ini-options

2002-05-22 Thread Dennis Gearon
if only there were, 'get_magic_quotes_sysbase();' Jason Wong wrote: >On Thursday 23 May 2002 11:49, Dennis Gearon wrote: >> Is there any way before PHP4 to read: >> magic_quotes_xxx >> settings so that I know what is happening to data escaping? > >get_magic_quotes_gpc() & get_magic_quotes_r

Re: [PHP] ini-options

2002-05-22 Thread Jason Wong
On Thursday 23 May 2002 11:49, Dennis Gearon wrote: > Is there any way before PHP4 to read: > magic_quotes_xxx > settings so that I know what is happening to data escaping? get_magic_quotes_gpc() & get_magic_quotes_runtime() seems to run on most versions of php. -- Jason Wong -> Gremlins