📁 File Manager Pro
v10.0.2 | PHP: 8.1.34
Server: LiteSpeed
2026-06-29 05:01:53
📂
/
/
opt
/
alt
/
tests
/
alt-php85-pecl-memcache_8.2-2.el8
/
tests
✏️
Editing: 012.phpt
--TEST-- memcache_add() & memcache_replace() --SKIPIF-- <?php include 'connect.inc'; ?> --FILE-- <?php include 'connect.inc'; $var = new stdClass; $var->plain_attribute = 'value'; $var->array_attribute = Array('test1', 'test2'); $result1 = $memcache->add('non_existing_test_key2', $var, false, 2); $result2 = $memcache->replace('non_existing_test_key2', $var, false, 10); var_dump($result1); var_dump($result2); $memcache->delete('non_existing_test_key2'); ?> --EXPECT-- bool(true) bool(true)
💾 Save Changes
❌ Cancel