PHP 7.4 deprecated get_magic_quotes_gpc function alternative – Php versions
I am encountered with the situation where one of my old code is using get_magic_quotes_gpc() which is deprecated in the latest PHP version 7.4.* Currently, I have something like this. Add Slashes return get_magic_quotes_gpc() ? addslashes($string) : $string; Remove Slashes…