XCache is a fast, stable PHP opcode cacher that has been proven and is now running on production servers under high load.
https://xcache.lighttpd.net/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
187 B
12 lines
187 B
![]()
9 years ago
|
--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
|