<?php require_once "src/Synchronization.php"; $handler1 = new Synchronization("http://eric-zieger.de/humans.txt"); if ($handler1->updateLocalFile()) { echo "Datei: <strong>" . $handler1->getLocalFilename() . "</strong> wurde geupdated.<br>"; } else { echo "Keine Neuerung an der Datei: <strong>" . $handler1->getRemoteUrl() . "</strong><br>"; } $handler2 = new Synchronization("http://eric-zieger.de/robots.txt"); if ($handler2->updateLocalFile()) { echo "Datei: <strong>" . $handler2->getLocalFilename() . "</strong> wurde geupdated."; } else { echo "Keine Neuerung an der Datei: <strong>" . $handler2->getRemoteUrl() . "</strong>"; }