1
0
mirror of https://github.com/php/php-src.git synced 2026-03-27 17:52:16 +01:00
Files
archived-php-src/ext/opcache/tests/bug75370.phpt
Xinchen Hui a52d1088e5 Added skipf
2017-10-13 18:21:41 +08:00

22 lines
326 B
PHP

--TEST--
Bug #75370 (Webserver hangs on valid PHP text)
--INI--
opcache.enable=1
opcache.enable_cli=1
opcache.optimization_level=-1
--SKIPIF--
<?php require_once('skipif.inc'); ?>
--FILE--
<?php
function test()
{
$success = true;
$success = $success AND true;
return $success;
}
var_dump(test());
?>
--EXPECT--
bool(true)