You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
--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
|