php set_magic_quotes_runtime() 函数过时解决方法
程序员文章站
2022-05-27 15:47:35
...
PHP5.3中 bool set_magic_quotes_runtime ( bool $new_setting )函数过时.
把函数:
set_magic_quotes_runtime($new_setting);
替换成:
ini_set("magic_quotes_runtime", $new_setting);
上一篇: 使用phpize安装php模块
下一篇: 请教正则必须包含如何匹配呢
推荐阅读
-
php curl_exec函数返回false的解决方法
-
ThinkPHP的截取字符串函数无法显示省略号的解决方法_php实例
-
ThinkPHP调用common/common.php函数提示错误function undefined的解决方法_PHP
-
php ord 函数与中文乱码解决方法_PHP教程
-
楷体gb2312 PHP iconv 函数转gb2312的bug解决方法
-
PHP file_get_contents 函数超时的几种解决方法
-
php5.2以下版本无json_decode函数的解决方法
-
PHP is_subclass_of函数的一个BUG和解决方法
-
ThinkPHP调用common/common.php函数提示错误function undefined的解决方法
-
PHP file_get_contents函数读取远程数据超时的解决方法