<?php
set_time_limit(0);
for ($i = 65000;$i < 66000;$i++) {
$imageData = implode('', file('http://xx.xx.xx.xx/ChannelLogo/logo-' . $i . '.png'));
$length = strlen($imageData);
if ($length > 0) {
if (($fh = fopen('channels/logo-' . $i . '.png', 'w'))) {
fwrite($fh, $imageData);
}
}
}
?>