在php 7.2中是否可以替代已弃用的magic_quotes_runtime?

时间:2019-03-28 08:04:13

标签: php-7.2 postgresql-10 magic-quotes

我们正在从php 5.2.3升级到php7.1.11,由于magic_quotes_runtime()已被弃用并删除,我似乎找不到替代品

因此,如果字符串包含单引号,那么数据库上的所有“插入”,“更新”功能现在将不起作用 所有应用程序代码都依赖于此功能,我需要找到一个全局解决方案,而不要更改代码的每一页。

// Those are not working anymore
set_magic_quotes_runtime(1);
ini_set("magic_quotes_runtime", 1);

谢谢

0 个答案:

没有答案