Deprecated: function set_magic_quotes_runtime() is solved by the prompt of deprecated in !
deprecated: function set_magic_quotes_runtime() is deprecated in e:
\wwwroot\city.chengdu.cn\include\common.inc.php on line 39
warning
Since PHP 5.3.0, this function has been discarded. It is strongly recommended not to apply this function.
The reason is this!
The solution is:
//set_magic_quotes_runtime(false); //Disable to escape the input of external resource input
ini_set(“magic_quotes_runtime”,”0″);
magic_quotes_runtime “0” Remove this option in PHP 5.4.0.
So this solution can only be used in version 5.3!
