Q & A

Deprecated: Function get_magic_quotes_runtime() is deprecated in 
  • GNU/Linux.ro
  • 3 years ago

This function has been DEPRECATED as of PHP 7.4.0. Relying on this function is highly discouraged.

  • GNU/Linux.ro
  • 3 years ago
<?php
// Check if magic_quotes_runtime is active
if(get_magic_quotes_runtime())
{
    // Deactivate
    set_magic_quotes_runtime(false);
}
?>