Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created November 3, 2020 21:50
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 parzibyte/5636c7b2fcd3263b86cf03f3b5ae862f to your computer and use it in GitHub Desktop.
Save parzibyte/5636c7b2fcd3263b86cf03f3b5ae862f to your computer and use it in GitHub Desktop.
<?php
/*
https://parzibyte.me/blog
*/
$directorio = __DIR__ . DIRECTORY_SEPARATOR . "fotos";
# Lo imprimo solo para depurar
echo $directorio;
if (!file_exists($directorio)) {
mkdir($directorio);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment