We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4166dd3 commit 61f98e2Copy full SHA for 61f98e2
tests/extensions_error.phpt
@@ -9,12 +9,6 @@ phpinfo(INFO_MODULES);
9
$minfo = ob_get_contents();
10
ob_end_clean();
11
12
-if(strtoupper(substr(PHP_OS, 0, 3)) == 'WIN') {
13
- // On Windows the "Fatal error" happens to appear before the error
14
- // message output by V8 itself.
15
- echo "skip Windows";
16
-}
17
-
18
if(preg_match("/V8 Engine Linked Version => (.*)/", $minfo, $matches)) {
19
$version = explode('.', $matches[1]);
20
if($version[0] < 5 || ($version[0] == 5 && $version[1] < 7)) {
0 commit comments