There is such a loop through the array:

<? foreach ($notificationsItem['posts'] as $value): ?> <?= $value->LogUrl ?> <? endif;?> 

How to reproduce the original array (create) by output? Otherwise, create an array that would scroll in this loop with one field?

    1 answer 1

     foreach ($notificationsItem['posts'] as $value){ echo $value->LogUrl; $newArr[] = $value->LogUrl; } 

    So? Chet hardly understand what you want to get in the end. Try to reformulate the question.