1
0
Fork 0
xcache/tests/xcache_deep_copy_static_var...

12 lines
187 B
Plaintext
Raw Normal View History

--TEST--
xcache requires deep copying static variables in shallow copy mode
--INI--
xcache.readonly_protection=0
--FILE--
<?php
static $a = array(1);
echo $a[0], PHP_EOL;
?>
--EXPECT--
1