Server IP : 23.254.227.96 / Your IP : 216.73.216.7 Web Server : Apache/2.4.62 (Unix) OpenSSL/1.1.1k System : Linux hwsrv-1277026.hostwindsdns.com 4.18.0-477.13.1.el8_8.x86_64 #1 SMP Tue May 30 14:53:41 EDT 2023 x86_64 User : viralblo ( 1001) PHP Version : 8.1.31 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /usr/local/src/memcache-8.0/tests/ |
Upload File : |
--TEST-- memcache->get() with flags --SKIPIF-- <?php include 'connect.inc'; if (!isset($host2)) die('skip $host2 not set'); ?> --FILE-- <?php include 'connect.inc'; $flag1 = 0x10000; $flag2 = 0x20000; $memcache->set('test_key1', 'test1', $flag1); $memcache->set('test_key2', 'test2', $flag2); // Test OO $result1 = null; $result2 = $memcache->get('test_key1', $result1); var_dump($result1); var_dump($result2); $result3 = null; $result4 = $memcache->get(array('test_key1', 'test_key2'), $result3); if (is_array($result3)) ksort($result3); if (is_array($result4)) ksort($result4); var_dump($result3); var_dump($result4); // Test procedural $result1 = null; $result2 = memcache_get($memcache, 'test_key1', $result1); var_dump($result1); var_dump($result2); $result3 = null; $result4 = memcache_get($memcache, array('test_key1', 'test_key2'), $result3); if (is_array($result3)) ksort($result3); if (is_array($result4)) ksort($result4); var_dump($result3); var_dump($result4); ?> --EXPECT-- int(65536) string(5) "test1" array(2) { ["test_key1"]=> int(65536) ["test_key2"]=> int(131072) } array(2) { ["test_key1"]=> string(5) "test1" ["test_key2"]=> string(5) "test2" } int(65536) string(5) "test1" array(2) { ["test_key1"]=> int(65536) ["test_key2"]=> int(131072) } array(2) { ["test_key1"]=> string(5) "test1" ["test_key2"]=> string(5) "test2" }