1
0
Fork 0
xcache/tests/xcache_deep_copy_arg_info.phpt

16 lines
174 B
Plaintext
Raw Normal View History

--TEST--
xcache requires deep copying arg info
--INI--
xcache.readonly_protection=0
--FILE--
<?php
function a($a = 1) {
echo $a;
}
a();
a(2);
echo PHP_EOL;
?>
--EXPECT--
12