我刚刚安装了新版本的 XAMPP,以前运行良好的网站现在不再运行,我想这是 PHP 不兼容,有人可以帮助我吗?tnks 在 adv..
Fatal error: Uncaught Error: Call to undefined function get_magic_quotes_gpc() in D:\xampp\htdocs\index.php:207 Stack trace: #0 {main} thrown in D:\xampp\htdocs\index.php on line 207
Run Code Online (Sandbox Code Playgroud)
\\ The path to the "application" folder
if (is_dir($application_folder))
{
define('APPPATH', $application_folder.'/');
}
else
{
if ( ! is_dir(BASEPATH.$application_folder.'/'))
{
exit("Your application folder path does not appear to be set correctly. Please open the following file and correct this: ".SELF);
}
define('APPPATH', BASEPATH.$application_folder.'/');
}
if(get_magic_quotes_gpc())
{
function stripslashes_gpc(&$value)
{
$value = stripslashes($value);
} …Run Code Online (Sandbox Code Playgroud) php ×1