Closed dimayakovlev closed 3 hours ago
Function `get_magic_quotes_gpc() has been DEPRECATED as of PHP 7.4.0, and REMOVED as of PHP 8.0.0.
Remove all code where get_magic_quotes_gpc() used or check PHP version before execute function.
get_magic_quotes_gpc()
To compare PHP version use code:
<?php if (version_compare(PHP_VERSION, '7.4.0', '<')) { // use get_magic_quotes_gpc() }
Part of #83.
Prefer to compare PHP version to preserve compatibility.
Function `get_magic_quotes_gpc() has been DEPRECATED as of PHP 7.4.0, and REMOVED as of PHP 8.0.0.
Remove all code where
get_magic_quotes_gpc()
used or check PHP version before execute function.To compare PHP version use code:
Part of #83.