mirror of
https://github.com/php/php-src.git
synced 2026-04-20 22:41:20 +02:00
For rationale, see #6787 Extensions migrated in part 3: * ftp * gmp * iconv * opcache * shmop
20 lines
271 B
PHP
20 lines
271 B
PHP
--TEST--
|
|
Bug #75230 (Invalid opcode 49/1/8 using opcache)
|
|
--INI--
|
|
opcache.enable=1
|
|
opcache.enable_cli=1
|
|
opcache.optimization_level=-1
|
|
--EXTENSIONS--
|
|
opcache
|
|
--FILE--
|
|
<?php
|
|
function f() {
|
|
$retval = false;
|
|
if ($retval) { }
|
|
}
|
|
f();
|
|
exit("OK");
|
|
?>
|
|
--EXPECT--
|
|
OK
|