|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
[2011-08-05 15:06 UTC] thbley at gmail dot com
Description: ------------ Calling get_magic_quotes_gpc() gives: <b>Deprecated</b>: Function get_magic_quotes_gpc() is deprecated in <b>...</b> on line <b>...</b><br /> Please add a note to http://www.php.net/releases/NEWS_5_4_0_alpha1.txt Test script: --------------- get_magic_quotes_gpc(); Patchesbug55371.patch (last revision 2011-11-12 11:21 UTC by david dot zuelke at bitextender dot com)Pull RequestsHistoryAllCommentsChangesGit/SVN commits
|
|||||||||||||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Tue Nov 11 11:00:01 2025 UTC |
NEWS_5_4_0_beta1.txt mentions that get_magic_quotes_{gpc|runtime}() always return false, but not that they're deprecated.My opinion that transcends that disable line 7 as follows, where I have is version 5.4 (put comment symble) and save then press (live view ) if using dreamwaver or run it on internet explorer /* if (PHP_VERSION < 6) { $theValue = get_magic_quotes_gpc() ? stripslashes($theValue) : $theValue; }*/