summaryrefslogtreecommitdiff
path: root/ext/opcache/tests/bug76477.phpt
blob: 7978ce4d7b1c5ebd2d09711a8652572b7892e84b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
--TEST--
Bug #76477 (Opcache causes empty return value)
--INI--
opcache.enable=1
opcache.enable_cli=1
opcache.optimization_level=-1
--SKIPIF--
<?php require_once('skipif.inc'); ?>
--FILE--
<?php
testString();
function testString()
{
    $token = "ABC";
    $lengthBytes = strlenb($token);
    var_dump($lengthBytes == 0);
}

function strlenb() { return call_user_func_array("strlen", func_get_args()); }
?>
--EXPECT--
bool(false)