L
L
latipov_no_12017-09-18 11:03:48
PHP
latipov_no_1, 2017-09-18 11:03:48

How to remove images from a post?

Good afternoon!
There is the following output code.
Can you please tell me how to display the first image for each post?

<?php 

// ID нашего сообщества или страницы вконтакте
$wall_id="-";
 
// Удаляем минус у ID групп, что мы используем выше (понадобится для ссылки).
$group_id = preg_replace("/-/i", "", $wall_id);
 
// Количество записей, которое нам нужно получить.
$count = "5";
 
// Токен
$token = "";
 
// Получаем информацию, подставив все данные выше.
$api = file_get_contents("https://api.vk.com/api.php?oauth=1&method=wall.get&owner_id={$wall_id}&count={$count}&v=5.58&access_token={$token}");
 
// Преобразуем JSON-строку в массив
$wall = json_decode($api);
//var_dump($wall);
 
// Получаем массив
$wall = $wall->response->items;
 
// Обрабатываем данные массива с помощью for и выводим нужные значения
for ($i = 0; $i < count($wall); $i++) {
  echo "
<b>".($i + 1)."</b>. <i>".$wall[$i]->text."</i><br />
<a href=\"https://vk.com/wall-{$group_id}_{$wall[$i]->id}\">".$wall[$i]->text."</a><br />
";
}


?>

Answer the question

In order to leave comments, you need to log in

1 answer(s)
L
latipov_no_1, 2017-09-18
@latipov_no_1

<img src=\"{$wall[$i]->attachments[0]->photo->photo_604}\">

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question