File size: 655B
<?php
require_once($_SERVER['DOCUMENT_ROOT'].'/system/App.php');
if ($sys->isAjax())
{
$offset = !empty($_POST['offset']) ? (int) $_POST['offset'] : 0;
$count = !empty($_POST['count']) ? (int) $_POST['count'] : 10;
$arrFriends = $friends->get($offset, $count);
if (!empty($arrFriends) && is_array($arrFriends))
{
$json = [
'success' => 1,
'response' => $arrFriends,
];
}
else
{
$json = [
'error' => 1,
'comment' => 'У вас еще нет друзей',
];
}
}
else
{
$json = [
'error' => 1,
'comment' => '404 Bad Request'
];
}
echo json_encode($json, JSON_UNESCAPED_UNICODE);