Skip to content

Latest commit

 

History

History
34 lines (28 loc) · 684 Bytes

README.md

File metadata and controls

34 lines (28 loc) · 684 Bytes

FileMove

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();