1
0
mirror of https://github.com/php/php-src.git synced 2026-03-26 09:12:14 +01:00
Files
archived-php-src/ext/opcache/tests/issue0183.phpt
Máté Kocsis 7aacc705d0 Add many missing closing PHP tags to tests
Closes GH-5958
2020-08-09 22:03:36 +02:00

27 lines
427 B
PHP

--TEST--
ISSUE #183 (TMP_VAR is not only used once)
--INI--
opcache.enable=1
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":
break;
case "Darwin":
break;
case "Linux":
echo "okey";
break;
default:
break;
}
?>
--EXPECT--
okey