// SYSTEM PANEL //
[ROOT]
/
opt
/
alt
/
tests
/
alt-php83-pecl-memcache_8.2-1.el8
/
tests
[ PARENT ]
EDIT :: 014.phpt
--TEST-- memcache->increment() & memcache->decrement() --SKIPIF-- <?php include 'connect.inc'; ?> --FILE-- <?php include 'connect.inc'; $memcache->set('new_test', 5); $result1 = $memcache->increment('new_test'); $result2 = $memcache->decrement('new_test'); $result3 = $memcache->get('new_test'); var_dump($result1); var_dump($result2); var_dump($result3); ?> --EXPECT-- int(6) int(5) int(5)
SAVE
CANCEL