Create a recursive folder
<?php
/**
* function recursiveDir (string $folder)
*
* Crea un arbol de directorios de manera recursiva
*
* Example:
*
* recursiveDir(‘/tmp/folder/test/random/other’);
*
* return boolean
*/
Comments are closed.
<?php
/**
* function recursiveDir (string $folder)
*
* Crea un arbol de directorios de manera recursiva
*
* Example:
*
* recursiveDir(‘/tmp/folder/test/random/other’);
*
* return boolean
*/