jinnguyen/puja-stdlib

Puja-Stdlib provides basic functions such as File,Folder and more

v1.2.0 2017-02-21 08:58 UTC

This package is not auto-updated.

Last update: 2024-05-06 12:34:36 UTC


README

Puja-Stdlib provides basic functions such as File, Folder and more

Puja\Stdlib\File\File

Document document at http://php.net/manual/en/class.splfileobject.php
Addition functions
bool Puja\Stdlib\File\File::isUploadedFile() // Tells whether the file was uploaded via HTTP POST
Returns TRUE if the file named by filename was uploaded via HTTP POST. This is useful to help ensure that a malicious user hasn't tried to trick the script into working on files upon which it should not be working--for instance, /etc/passwd.
bool Puja\Stdlib\File\File::moveUploadedFile() // Moves an uploaded file to a new location
This function checks to ensure that the file designated by filename is a valid upload file (meaning that it was uploaded via PHP's HTTP POST upload mechanism). If the file is valid, it will be moved to the filename given by destination.

Puja\Stdlib\File\Info

Document document at http://php.net/manual/en/class.splfileinfo.php
Addition functions
array Puja\Stdlib\File\Info::getBasenameWithoutExt($subfix = null)  // Return the file name without ext
string Puja\Stdlib\File\Info::getContent()  // Return the file content

Puja\Stdlib\File\Temp

Document at http://php.net/manual/en/class.spltempfileobject.php

Puja\Stdlib\Folder\Folder

Document at http://php.net/manual/en/class.directoryiterator.php

Addition functions

array Puja\Stdlib\Folder\Folder::getChildFiles()  // Return a list of child files in folder
array Puja\Stdlib\Folder\Folder::getChildFoldes()  // Return a list of sub folders in folder
array Puja\Stdlib\Folder\Folder::getChild()  // Return a list of both child files and sub folders in folder
array Puja\Stdlib\Folder\Folder::getDirectChildFiles()  // Return a list of direct child files in folder
array Puja\Stdlib\Folder\Folder::getDirectChildFoldes()  // Return a list of direct sub folders in folder
array Puja\Stdlib\Folder\Folder::getDirectChild()  // Return a list of both direct child files and direct sub folders in folder