phpmyadmin导出数据库出现export.php on line 590错误break2

phpmyadmin导出表结构的时候报错:


Fatal error: Cannot ‘break’ 2 levels in D:\web\web\phpMyAdmin\export.php on line 590

循环出问题了,解决方法将这一行的break 2; 改为 break;
if ( G L O B A L S [ GLOBALS[ GLOBALS[what . ‘_structure_or_data’] == ‘structure’ || G L O B A L S [ GLOBALS[ GLOBALS[what . ‘_structure_or_data’] == ‘structure_and_data’) {
if (!PMA_exportStructure($db, $table, $crlf, $err_url, $do_relation, $do_comments, $do_mime, $do_dates, ‘triggers’, $export_type)) {
break 2; 改为 break;
}
}

你可能感兴趣的:(php)