Skip to content

Instantly share code, notes, and snippets.

@sworup
Last active May 4, 2016 05:10
Show Gist options
  • Save sworup/1ac6d0a8fecf223ec570 to your computer and use it in GitHub Desktop.
Save sworup/1ac6d0a8fecf223ec570 to your computer and use it in GitHub Desktop.
Make directory if does not exist (PHP)
<?php
if (!file_exists('path/to/directory')) {
mkdir('path/to/directory', 0777, true);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment