Содержание Недавние изменения Ссылки сюда
Править страницу История страницы
Содержание
<?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).']';
}
?>

Дискуссия

 -Neo- , 2009/10/21 02:18

Как это чудо юзается? кто нить расскажет? ))

api/shop_prices.txt · Последние изменения: 2016/01/31 09:43 (внешнее изменение)
Наверх
Браузерная онлайн игра
© 2005—2024 «Грани Реальности»