Skip to content

Instantly share code, notes, and snippets.

@cereal-s
Created December 19, 2016 12:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cereal-s/9ef8938f796ba16ffbec4d23268383ad to your computer and use it in GitHub Desktop.
Save cereal-s/9ef8938f796ba16ffbec4d23268383ad to your computer and use it in GitHub Desktop.
<?php
$n = range(0,9);
$a = range('a','z');
$t = count($a);
for($i = 0; $i < $t; $i++)
for($z = 0; $z < $t; $z++)
mkdir(__DIR__.'/dirs/'.$a[$i].$a[$z], 0700);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment