You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
print_pre('<<< ERROR >>> You need to disable Xdebug extension! It greatly slow things down!'.PHP_EOL);
60
65
exit(1);
61
66
}
67
+
ini_set('xdebug.show_exception_trace', 0);
68
+
69
+
// Check OpCache
70
+
$opcache = ini_get('opcache.enable');
71
+
if ($opcache) {
72
+
print_pre('<<< ERROR >>> You need to disable OpCache extension! It may affect results greatly! Make it via .htaccess, VHost or fpm config'.PHP_EOL);
73
+
exit(1);
74
+
}
75
+
$opcache = ini_get('opcache.enable_cli');
76
+
if ($opcache) {
77
+
print_pre('<<< ERROR >>> You need to disable Cli OpCache extension! It may affect results greatly! Run php with param: -dopcache.enable_cli=0'.PHP_EOL);
78
+
exit(1);
79
+
}
62
80
63
81
$mbover = ini_get('mbstring.func_overload');
64
82
if ($mbover == 2) {
65
-
print_pre('<<< ERROR >>> You need to disable mbstring string functions overloading! It greatly slow things down!'.PHP_EOL);
83
+
print_pre('<<< ERROR >>> You need to disable mbstring string functions overloading! It greatly slow things down! And messes with results.'.PHP_EOL);
66
84
exit(1);
67
85
}
68
86
@@ -1512,14 +1530,14 @@ function test_20_Type_Conversion()
0 commit comments