This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| /** | |
| * Image to PSD converter | |
| * | |
| * Converts an base64 encoded image (PNG) to PSD via ImageMagick. | |
| * | |
| * The receiving data must be an array with | |
| * - id = Unique dataset id. | |
| * - name = Image name. | |
| * - images = Array with the image data. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| $dir = __DIR__ . '/data/folder-to-delete'; | |
| $it = new RecursiveDirectoryIterator($dir, RecursiveDirectoryIterator::SKIP_DOTS); | |
| $files = new RecursiveIteratorIterator($it, | |
| RecursiveIteratorIterator::CHILD_FIRST); | |
| foreach($files as $file) { | |
| if ($file->isDir()){ | |
| rmdir($file->getRealPath()); |
OlderNewer