blob: d576f592d4dc366e9847437214b30b25b1f811c2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
--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)
|