£Á°èZ¨Ä…–K§‚«“ô4“ÒÙ´dîfUÙÃÅ WKbyʦ•ꎅȮFÒ¿ÊÎóCozá¬S@6{Í:›œêZÌ:Š•_%:¢¾¾~;‘Ã~芩ÊǍí`ÔÑ©ú뙵'5I¿fš×WO%ø9¾«¾DK|€ùÍD”Ýs]nHÕ¶êםӼ㞪éUWŸÈË%DÒÕ¬ï‘]/Åcx ‰ï2ß]ä6G[]S£Ôϯrs{úëóµmÒï#UQxo·õÞCe]"±/aÙ&Eã4ú9Jé_ÞåëdãöKë)AÞ ¯¹ægƒÛowЍø^d™ý½ßB7áyMä9ÜÖUã !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! --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