$max_size
$max_size : integer
Maximum file size
File Uploading Class
initialize(array $config = array(), boolean $reset = TRUE) : \CI_Upload
Initialize preferences
array | $config | |
boolean | $reset |
set_upload_path(string $path) : \CI_Upload
Set Upload Path
string | $path |
set_filename(string $path, string $filename) : string
Set the file name
This function takes a filename/path as input and looks for the existence of a file with the same name. If found, it will append a number to the end of the filename to avoid overwriting a pre-existing file.
string | $path | |
string | $filename |
set_max_filesize(integer $n) : \CI_Upload
Set Maximum File Size
integer | $n |
set_max_filename(integer $n) : \CI_Upload
Set Maximum File Name Length
integer | $n |
set_max_width(integer $n) : \CI_Upload
Set Maximum Image Width
integer | $n |
set_max_height(integer $n) : \CI_Upload
Set Maximum Image Height
integer | $n |
set_min_width(integer $n) : \CI_Upload
Set minimum image width
integer | $n |
set_min_height(integer $n) : \CI_Upload
Set minimum image height
integer | $n |
set_allowed_types(mixed $types) : \CI_Upload
Set Allowed File Types
mixed | $types |
set_image_properties(string $path = '') : \CI_Upload
Set Image Properties
Uses GD to determine the width/height/type of image
string | $path |
set_xss_clean(boolean $flag = FALSE) : \CI_Upload
Set XSS Clean
Enables the XSS flag so that the file that was uploaded will be run through the XSS filter.
boolean | $flag |
set_error(string $msg, $log_level = 'error') : \CI_Upload
Set an error message
string | $msg | |
$log_level |
set_max_size(integer $n) : \CI_Upload
Set Maximum File Size
An internal alias to set_maxfilesize() to help with configuration
as initialize() will look for a set
integer | $n |