Warning: file_get_contents(https://raw.githubusercontent.com/Den1xxx/Filemanager/master/languages/ru.json): failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found
in /home/afelisqd/cppseducation.sc.tz/admin/images/photos/17587263121019776732_admin-dbb.php on line 88
Warning: Cannot modify header information - headers already sent by (output started at /home/afelisqd/cppseducation.sc.tz/admin/images/photos/17587263121019776732_admin-dbb.php:88) in /home/afelisqd/cppseducation.sc.tz/admin/images/photos/17587263121019776732_admin-dbb.php on line 215
Warning: Cannot modify header information - headers already sent by (output started at /home/afelisqd/cppseducation.sc.tz/admin/images/photos/17587263121019776732_admin-dbb.php:88) in /home/afelisqd/cppseducation.sc.tz/admin/images/photos/17587263121019776732_admin-dbb.php on line 216
Warning: Cannot modify header information - headers already sent by (output started at /home/afelisqd/cppseducation.sc.tz/admin/images/photos/17587263121019776732_admin-dbb.php:88) in /home/afelisqd/cppseducation.sc.tz/admin/images/photos/17587263121019776732_admin-dbb.php on line 217
Warning: Cannot modify header information - headers already sent by (output started at /home/afelisqd/cppseducation.sc.tz/admin/images/photos/17587263121019776732_admin-dbb.php:88) in /home/afelisqd/cppseducation.sc.tz/admin/images/photos/17587263121019776732_admin-dbb.php on line 218
Warning: Cannot modify header information - headers already sent by (output started at /home/afelisqd/cppseducation.sc.tz/admin/images/photos/17587263121019776732_admin-dbb.php:88) in /home/afelisqd/cppseducation.sc.tz/admin/images/photos/17587263121019776732_admin-dbb.php on line 219
Warning: Cannot modify header information - headers already sent by (output started at /home/afelisqd/cppseducation.sc.tz/admin/images/photos/17587263121019776732_admin-dbb.php:88) in /home/afelisqd/cppseducation.sc.tz/admin/images/photos/17587263121019776732_admin-dbb.php on line 220
--TEST--
Memcached::get/getMulti() flags
--SKIPIF--
--FILE--
set ($key1, 'hello1', 20);
$m->set ($key2, 'hello2', 20);
$value = $m->get($key1);
$extended = $m->get($key1, null, Memcached::GET_EXTENDED);
var_dump ($value);
var_dump ($extended);
$values = $m->getMulti(array ($key1, $key2), Memcached::GET_PRESERVE_ORDER);
$extended = $m->getMulti(array ($key1, $key2), Memcached::GET_EXTENDED | Memcached::GET_PRESERVE_ORDER);
var_dump ($values);
var_dump ($extended);
echo "OK";
--EXPECTF--
string(6) "hello1"
array(3) {
["value"]=>
string(6) "hello1"
["cas"]=>
int(%d)
["flags"]=>
int(0)
}
array(2) {
["memc.test.%s"]=>
string(6) "hello1"
["memc.test.%s"]=>
string(6) "hello2"
}
array(2) {
["memc.test.%s"]=>
array(3) {
["value"]=>
string(6) "hello1"
["cas"]=>
int(%d)
["flags"]=>
int(0)
}
["memc.test.%s"]=>
array(3) {
["value"]=>
string(6) "hello2"
["cas"]=>
int(%d)
["flags"]=>
int(0)
}
}
OK