Skip to content

Instantly share code, notes, and snippets.

@ironsjp
Created May 7, 2009 15:01
Show Gist options
  • Save ironsjp/108141 to your computer and use it in GitHub Desktop.
Save ironsjp/108141 to your computer and use it in GitHub Desktop.
<?php
for ($i = 0; $i < 256; $i++) {
for ($j = 0; $j < 256; $j++) {
$dir = sprintf("data/twitter/friends/%02x/%02x", $i, $j);
mkdir($dir, 0777, true);
}
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment