php-magic-quotes-gpc:在PHP 5.4更高版本上为旧版代码实现magic_quotes_gpc

时间:2024-06-03 11:42:18
【文件属性】:

文件名称:php-magic-quotes-gpc:在PHP 5.4更高版本上为旧版代码实现magic_quotes_gpc

文件大小:4KB

文件格式:ZIP

更新时间:2024-06-03 11:42:18

php magic-quotes legacy-code php54 PHP

PHP魔术引号实现 在PHP 5.4更高版本上为旧版代码实现magic_quotes_gpc 如果您要将旧版源代码迁移到上述PHP 5.4版的环境中,但是根据Magic Quotes magic_quotes_gpc SQL保护,其中包括许多易受攻击的数据库查询代码。 只需使用它就可以像以前一样在新版本PHP上平稳运行。 作为PHP的警告: 自PHP 5.3.0起,Magic Quotes功能已被弃用,自PHP 5.4.0起,该功能已被删除。 示范 print_r ( $ _GET ); MagicQuotesGpc :: init (); print_r ( $ _GET ); 使用查询?username=1' OR '1'='1访问URL后,输出为: Array ( [username] => 1' OR '1'='1 ) Array ( [username] => 1\


【文件预览】:
php-magic-quotes-gpc-master
----src()
--------MagicQuotesGpc.php(3KB)
----LICENSE(1KB)
----README.md(2KB)
----CHANGELOG.md(173B)
----composer.json(576B)

网友评论