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.
2 parents 347b430 + b0b0be1 commit cdacf4cCopy full SHA for cdacf4c
ext/opcache/tests/issue0183.phpt
@@ -0,0 +1,25 @@
1
+--TEST--
2
+ISSUE #183 (TMP_VAR is not only used once)
3
+--INI--
4
+opcache.enable=1
5
+opcache.enable_cli=1
6
+opcache.optimization_level=-1
7
+--SKIPIF--
8
+<?php require_once('skipif.inc'); ?>
9
+<?php if (PHP_OS != "Linux") die("skip, only for linux"); ?>
10
+--FILE--
11
+<?php
12
+
13
+switch (PHP_OS) {
14
+ case "Windows":
15
+ break;
16
+ case "Darwin":
17
18
+ case "Linux":
19
+ echo "okey";
20
21
+ default:
22
23
+}
24
+--EXPECT--
25
+okey
0 commit comments