We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 19be8b6 commit 70699d7Copy full SHA for 70699d7
NEWS
@@ -6,6 +6,9 @@ PHP NEWS
6
. Fixed bug #67308 (Serialize of DateTime truncates fractions of second).
7
(Adam)
8
9
+- OPCache:
10
+ . Fixed issue #183 (TMP_VAR is not only used once). (Dmitry, Laruence)
11
+
12
?? ??? 2014, PHP 5.5.13
13
14
- CLI server:
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
+opcache.optimization_level=-1
+--SKIPIF--
+<?php require_once('skipif.inc'); ?>
+<?php if (PHP_OS != "Linux") die("skip, only for linux"); ?>
+--FILE--
+<?php
+switch (PHP_OS) {
+ 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