ligne / file-move
Simple file move
1.1
2019-11-27 21:45 UTC
Requires
- php: >=7.1
This package is auto-updated.
Last update: 2025-03-29 00:43:17 UTC
README
A simple class to move file most easy.
Use
$ composer require ligne/file-move
use Ligne\FileMove; $file = new FileMove("myfile","files/"); //The final slash is required $file->save();
Easy! 🎉
Other methods
$file->setFileName(); /** * The mime type of the file, if the browser provided this information. * An example would be "image/gif". * This mime type is however not checked on the PHP side and therefore don't take its value for granted. */ $file->getFileType(); $file->debugData(); $file->getDirToSave(); $file->getExtension(); $file->getExtensionFromName(); $file->getFileName(); $file->getInputFileName();