Вот такой у меня код для вывода комментариев..
$gid = $_GET['gid'];
$pid = $_GET['pid'];
$api = file_get_contents("https://api.vk.com/method/wall.getComments?owner_id=-".$gid."&post_id=".$pid."&access_token=".$token."&count=10&v=5.58");
$wall = json_decode($api,true);
foreach ($wall['response'] as $items => $result) {
echo $result['text'];
}
но комментарии не выводит.
если вывести массив такой строкой print_r($wall); получается следующее.
Array
(
[response] => Array
(
[count] => 7
[items] => Array
(
[0] => Array
(
[id] => 174664
[from_id] => 103055504
[date] => 1530022656
[text] => Это где, кто знает?
)
[1] => Array
(
[id] => 174667
[from_id] => 52254070
[date] => 1530023698
[text] => [id103055504|Артур], Опук
[reply_to_user] => 103055504
[reply_to_comment] => 174664
)
[2] => Array
(
[id] => 174668
[from_id] => 103055504
[date] => 1530023736
[text] => [id52254070|Евгений], спасибо
[reply_to_user] => 52254070
[reply_to_comment] => 174667
)
как сделать что бы ввыводило комментарии именно в цикле foreach, мне нужен именно цикл