kleiram / transmission-php

PHP Transmission API client
Other
184 stars 62 forks source link

Problem set tracker Announce #75

Open htschannerl opened 6 years ago

htschannerl commented 6 years ago

Hello,

I'm trying to change the tracker annouce. Here is the code:

foreach ($trackers as $tracker){
        $scrapeold = $tracker->getScrape();
        $announceold = $tracker->getAnnounce();

        echo $announceold . "<br><br>";

        $announcenew = str_replace("http://", "http://", $announceold);

        $tracker->setAnnounce($announcenew);
        echo $tracker->getAnnounce() . "<br>";
    }

But is not work.