Skip to content

Instantly share code, notes, and snippets.

@CMCDragonkai
Last active December 31, 2015 17:19
Show Gist options
  • Save CMCDragonkai/8019866 to your computer and use it in GitHub Desktop.
Save CMCDragonkai/8019866 to your computer and use it in GitHub Desktop.
PHP: Unique Filenames using Gaufrette
<?php
//works for Gaufrette, but the same principle exists for other filesystem code
do{
$name = uniqid('folder', true);
if(!$this->filesystem->has($name)) break;
}while(true);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment