mirror of
https://github.com/php-win-ext/php-memcached.git
synced 2026-03-24 09:02:10 +01:00
15 lines
354 B
PHP
15 lines
354 B
PHP
--TEST--
|
|
Serialize JSON
|
|
--SKIPIF--
|
|
<?php
|
|
include dirname(__FILE__) . "/skipif.inc";
|
|
if (!extension_loaded('json')) echo "skip no JSON loaded";
|
|
if (!Memcached::HAVE_JSON) echo "skip JSON support not enabled";
|
|
?>
|
|
--REDIRECTTEST--
|
|
|
|
return array(
|
|
'TESTS' => sys_get_temp_dir(),
|
|
'ENV' => array('TEST_MEMC_SERIALIZER' => 'Memcached::SERIALIZER_JSON'),
|
|
);
|