Есть скрипт, который выводит данные из api, общее количество материалов, цифры
$config = array(
'oauth_consumer_key' => 'xxxxxxxxxxxxxxxxxxxxxxxxxxx',
'oauth_consumer_secret' => 'xxxxxxxxxxxxxxxxxxxxxxxxxx',
'oauth_token' => 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxx',
'oauth_token_secret' => 'xxxxxxxxxxxxxxxxxxxxxxxxxxxx'
);
$request = new Request($config);
$response = $request->get('/dir',
array()
);
$response = json_decode($response , true);
$total= $response['total'];
echo $total;
как мне его привести к виду:
class All {
function getAll() {
return $this->total;
}
}