v2.5.2
Giriş yap

İnstagram post çekme döngü durdurma

talhostic
823 defa görüntülendi

Selamlar herkese. " PHP ile Instagram Son Fotoğrafları Çekmek + Cache + Farklı Yol " videosundaki yapılan işlemde çekilen instagram postlarının sadece son eklenen 3 postu çekecek şekilde nasıl değiştirebilirim? Yardımcı olabilirseniz sevinirim. Teşekkürler.

<?php 

  $json = file_get_contents('https://www.instagram.com/metadijital/?__a=1');
  $data = json_decode($json, true);

  if($data->count() < 3){

  foreach($data['graphql']['user']['edge_owner_to_timeline_media']['edges'] as $image)
  {{ 
  ?>
  
    <li>
        <a href="">
        <img src="<?=$image['node']['display_url']?>" alt="" style="width:87px;height:87px;">
        </a>
    </li>
    
<?php 
  }}
        endforeach; 
        }
                        
?>
makifgokce
1448 gün önce

döngüyü durdurmak için break; kullanabilirsin.

$i = 0;
foreach(){
    if($i > 3){
        break;
    }
    $i++;
}