Şu kısmı değiştirin
$img = $pins[$count]['image_large_url'];
23
●231
<?php
require __DIR__ . '/../vendor/autoload.php';
use seregazhuk\PinterestBot\Factories\PinterestBot;
$bot = PinterestBot::create();
$pins = $bot->pins
->search('cats')
->take(5)
->toArray();
print_r($pins[0]);Ekledikten sonraki hali<?php
require __DIR__ . '/../vendor/autoload.php';
use seregazhuk\PinterestBot\Factories\PinterestBot;
$bot = PinterestBot::create();
$pins = $bot->pins
->search('cats')
->take(5)
->toArray();
print_r($pins[0]);
for($i=0;$i<=$count;$i++){
//Eleman sayısı kadar döngüyü çalıştırıyoruz.
$img = $pins[$count]['image_large_url'];
echo '<img src="'.$img.'">'; [COLOR=#515365][FONT=consolas]for($i=0;$i<=$count;$i++){[/FONT][/COLOR]
[COLOR=#515365][FONT=consolas]//Eleman sayısı kadar döngüyü çalıştırıyoruz.[/FONT][/COLOR]
[COLOR=#515365][FONT=consolas]$img = $pins[$count]['image_large_url'];[/FONT][/COLOR]
[COLOR=#515365][FONT=consolas]echo '<img src="'.$img.'">';[/FONT][/COLOR]
}Şeklinde mi yoksa } süslü parantezi unuttunuz mu? Eğer böyleyse ne hata alıyorsunuz satırını ve hata mesajını yazar mısınız