--TEST-- memcache_set_compress_threshold() --SKIPIF-- --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" memcache_set_compress_threshold(): Argument #1 ($memcache) must be of type 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) memcache_set_compress_threshold(): Argument #1 ($memcache) must be of type MemcachePool, stdClass given Done