php Deprecated: Function set_magic_quotes_runtime() is depre_PHP教程
程序员文章站
2022-05-16 23:39:16
...
今天在做一程序时提示Deprecated: Function set_magic_quotes_runtime() is deprecated,后来网上搜索了一下才知道,原因是PHP 5.3以后的版本都不支持这个函数了。
解决办法
函数 set_magic_quotes_runtime() 在php5.3以后的版本可用
代码如下 | 复制代码 |
ini_set(“magic_quotes_runtime”, 0) |
来替换了,方法简单吧。
推荐阅读
-
Deprecated: Function set_magic_quotes_runtime() is deprecated
-
Deprecated: Function set_magic_quotes_runtime() is deprecated
-
php5.3提示Function ereg() is deprecated Error问题解决方法
-
实测在class的function中include的文件中非php的global全局环境_PHP教程
-
Warning: mssql_query() [function.mssql-query]:_PHP教程
-
php中魔法常量_FILE_,_LINE_,__FUNCTION__用法_PHP教程
-
php中__destruct与register_shutdown_function执行的先后顺序问题,destruct_PHP教程
-
php5.3提示Function ereg() is deprecated Error问题解决方法,eregdeprecated_PHP教程
-
Call to undefined function curl_init(),undefinedcurl_init_PHP教程
-
Deprecated: Function set_magic_quotes_runtime() is deprecate