<?php
// define your api key here!
define('API_KEY', '....');
function getPrices($id)
{
$result = false;
if (is_array($id))
{
$id = implode(',', $id);
}
// cache it?
$data = @file_get_contents('http://api.ereality.ru/'.API_KEY.'/shop_price/?id=' . $id);
if ($data)
{
$result = unserialize($data);
}
return $result;
}
$items_id = array(6169,6157);
$prices = getPrices($items_id);
if ($prices)
{
// реверс по дате (особенность флешки отрисовки графиков о_О)
$prices = array_reverse($prices, true);
foreach ($prices as $date => $r)
{
// дата, цены
$js[] = '["'. $date .'", '. implode(',', $r) .']';
}
// указываем тип данных
header('Content-Type: application/json; charset=utf-8');
// send JSON data
echo '['.implode(",\n", $js).']';
}
?>
Наверх