blob: 486f3daa5b6fa4db53f862602b9ba843fee06e2c [file] [log] [blame]
<?php
header("Content-type: application/json");
$redis = new Redis();
$redis->connect('127.0.0.1');
$redis->select(2);
// result array
$result = array();
for($i = 0; $i < 20; $i++)
{
$value = $redis->get($i);
//var_dump($value);
$result[] = $value;
}
print json_encode($result);
?>