--TEST-- memcache_set_compress_threshold() --SKIPIF-- = 80000) die('skip php prior to 8 only'); include 'connect.inc'; ?> --FILE-- getMessage()}\n"; } var_dump(memcache_set_compress_threshold($memcache, -1, -1)); var_dump(memcache_set_compress_threshold($memcache, 1, -1)); var_dump(memcache_set_compress_threshold($memcache, -1, 1)); try { var_dump(memcache_set_compress_threshold(new stdClass, 1, 1)); } catch (TypeError $e) { echo "{$e->getMessage()}\n"; } echo "Done\n"; ?> --EXPECTF-- bool(true) int(15000) bool(true) bool(true) bool(true) string(3) "abc" Argument 1 passed to memcache_set_compress_threshold() must be an instance of MemcachePool, array given Warning: memcache_set_compress_threshold()%s threshold must be a positive integer in %s on line %d bool(false) Warning: memcache_set_compress_threshold()%s min_savings must be a float in the 0..1 range in %s on line %d bool(false) Warning: memcache_set_compress_threshold()%s threshold must be a positive integer in %s on line %d bool(false) Argument 1 passed to memcache_set_compress_threshold() must be an instance of MemcachePool, instance of stdClass given Done