-
Notifications
You must be signed in to change notification settings - Fork 15
Working with Pimf_Util_File
g.krsteski edited this page Jun 3, 2014
·
1 revision
Gives a methods to act in a secure way with a file/s in the file system and uses SplFileInfo a high-level object oriented interface to information for an individual file.
Create a file instance.
$file = new \Pimf\Util\File('/path/to/your/file.jpg');Gives you the extension of the file.
$file->getExtension();Moves the file to a new location.
$file->move('/path/to/destination/');Other helpful methods that are delivered by SplFileInfo like information for an individual file, please find at php.net/manual/en/class.splfileinfo.php page.