Skip to content

Instantly share code, notes, and snippets.

@ajspadial
Created September 8, 2015 22:54
Show Gist options
  • Save ajspadial/cf8261d334caf3900a75 to your computer and use it in GitHub Desktop.
Save ajspadial/cf8261d334caf3900a75 to your computer and use it in GitHub Desktop.
Simple script for downloading every picture in http://bl-labs.github.io/arcadeinterface/sample_images.html for the Brittish Library Crodwsourcing Jam
<?php
$sampleset = file_get_contents('data/sampleset.csv');
$samples = explode("\n", $sampleset);
array_shift($samples);
array_walk($samples, function($s) {
$sampleData = explode(',', $s);
$namefile = $sampleData[0];
$smallURL = $sampleData[4];
copy($smallURL, 'data/repo/' . $namefile . '.jpg');
});
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment