503f75d08b
These names don't make sense now that we run both suites the same way.
12 linhas
160 B
PHP
12 linhas
160 B
PHP
<?php
|
|
|
|
$arr = array(1,2,3);
|
|
var_dump(apc_store('bluh', $arr));
|
|
|
|
$bla = apc_fetch('bluh');
|
|
foreach ($bla as &$num) {
|
|
$num++;
|
|
}
|
|
var_dump($bla);
|
|
var_dump($arr);
|