Home >Backend Development >PHP Tutorial >Deprecated: Function set_magic_quotes_runtime()_PHP教程
I upgraded the php version today, and suddenly Deprecated appeared: Function set_magic_quotes_runtime() is deprecated Error, below we summarize the analysis of
reasons:
The PHP version has been upgraded recently, and the new version of PHP has closed set_magic_quotes_runtime()
This feature (set_magic_quotes_runtime()) has been turned off after PHP5.3.
And this feature has been completely removed in PHP6.
Solution
You can comment or delete the error line, or add the @ symbol in front of set_magic_quotes_runtime().
You can also do the following in the program
The code is as follows
|
Copy code
|
||||
find: |
ini_set("magic_quotes_runtime", 0);
www.bkjia.com