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