Properties

$max_size

$max_size : integer

Maximum file size

Type

integer

$max_width

$max_width : integer

Maximum image width

Type

integer

$max_height

$max_height : integer

Maximum image height

Type

integer

$min_width

$min_width : integer

Minimum image width

Type

integer

$min_height

$min_height : integer

Minimum image height

Type

integer

$max_filename

$max_filename : integer

Maximum filename length

Type

integer

$max_filename_increment

$max_filename_increment : integer

Maximum duplicate filename increment ID

Type

integer

$allowed_types

$allowed_types : string

Allowed file types

Type

string

$file_temp

$file_temp : string

Temporary filename

Type

string

$file_name

$file_name : string

Filename

Type

string

$orig_name

$orig_name : string

Original filename

Type

string

$file_type

$file_type : string

File type

Type

string

$file_size

$file_size : integer

File size

Type

integer

$file_ext

$file_ext : string

Filename extension

Type

string

$file_ext_tolower

$file_ext_tolower : string

Force filename extension to lowercase

Type

string

$upload_path

$upload_path : string

Upload path

Type

string

$overwrite

$overwrite : boolean

Overwrite flag

Type

boolean

$encrypt_name

$encrypt_name : boolean

Obfuscate filename flag

Type

boolean

$is_image

$is_image : boolean

Is image flag

Type

boolean

$image_width

$image_width : integer

Image width

Type

integer

$image_height

$image_height : integer

Image height

Type

integer

$image_type

$image_type : string

Image type

Type

string

$image_size_str

$image_size_str : string

Image size string

Type

string

$error_msg

$error_msg : array

Error messages list

Type

array

$remove_spaces

$remove_spaces : boolean

Remove spaces flag

Type

boolean

$detect_mime

$detect_mime : boolean

MIME detection flag

Type

boolean

$xss_clean

$xss_clean : boolean

XSS filter flag

Type

boolean

$mod_mime_fix

$mod_mime_fix : boolean

Apache mod_mime fix flag

Type

boolean

$temp_prefix

$temp_prefix : string

Temporary filename prefix

Type

string

$client_name

$client_name : boolean

Filename sent by the client

Type

boolean

$_file_name_override

$_file_name_override : string

Filename override

Type

string

$_mimes

$_mimes : array

MIME types list

Type

array

$_CI

$_CI : object

CI Singleton

Type

object

Methods

__construct()

__construct(array  $config = array()) : void

Constructor

Parameters

array $config

initialize()

initialize(array  $config = array(), boolean  $reset = TRUE) : \CI_Upload

Initialize preferences

Parameters

array $config
boolean $reset

Returns

\CI_Upload

do_upload()

do_upload(string  $field = 'userfile') : boolean

Perform the file upload

Parameters

string $field

Returns

boolean

data()

data(string  $index = NULL) : mixed

Finalized Data Array

Returns an associative array containing all of the information related to the upload, allowing the developer easy access in one array.

Parameters

string $index

Returns

mixed

set_upload_path()

set_upload_path(string  $path) : \CI_Upload

Set Upload Path

Parameters

string $path

Returns

\CI_Upload

set_filename()

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.

Parameters

string $path
string $filename

Returns

string

set_max_filesize()

set_max_filesize(integer  $n) : \CI_Upload

Set Maximum File Size

Parameters

integer $n

Returns

\CI_Upload

set_max_filename()

set_max_filename(integer  $n) : \CI_Upload

Set Maximum File Name Length

Parameters

integer $n

Returns

\CI_Upload

set_max_width()

set_max_width(integer  $n) : \CI_Upload

Set Maximum Image Width

Parameters

integer $n

Returns

\CI_Upload

set_max_height()

set_max_height(integer  $n) : \CI_Upload

Set Maximum Image Height

Parameters

integer $n

Returns

\CI_Upload

set_min_width()

set_min_width(integer  $n) : \CI_Upload

Set minimum image width

Parameters

integer $n

Returns

\CI_Upload

set_min_height()

set_min_height(integer  $n) : \CI_Upload

Set minimum image height

Parameters

integer $n

Returns

\CI_Upload

set_allowed_types()

set_allowed_types(mixed  $types) : \CI_Upload

Set Allowed File Types

Parameters

mixed $types

Returns

\CI_Upload

set_image_properties()

set_image_properties(string  $path = '') : \CI_Upload

Set Image Properties

Uses GD to determine the width/height/type of image

Parameters

string $path

Returns

\CI_Upload

set_xss_clean()

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.

Parameters

boolean $flag

Returns

\CI_Upload

is_image()

is_image() : boolean

Validate the image

Returns

boolean

is_allowed_filetype()

is_allowed_filetype(boolean  $ignore_mime = FALSE) : boolean

Verify that the filetype is allowed

Parameters

boolean $ignore_mime

Returns

boolean

is_allowed_filesize()

is_allowed_filesize() : boolean

Verify that the file is within the allowed size

Returns

boolean

is_allowed_dimensions()

is_allowed_dimensions() : boolean

Verify that the image is within the allowed width/height

Returns

boolean

validate_upload_path()

validate_upload_path() : boolean

Validate Upload Path

Verifies that it is a valid upload path with proper permissions.

Returns

boolean

get_extension()

get_extension(string  $filename) : string

Extract the file extension

Parameters

string $filename

Returns

string

limit_filename_length()

limit_filename_length(string  $filename, integer  $length) : string

Limit the File Name Length

Parameters

string $filename
integer $length

Returns

string

do_xss_clean()

do_xss_clean() : string

Runs the file through the XSS clean function

This prevents people from embedding malicious code in their files. I'm not sure that it won't negatively affect certain files in unexpected ways, but so far I haven't found that it causes trouble.

Returns

string

set_error()

set_error(string  $msg,   $log_level = 'error') : \CI_Upload

Set an error message

Parameters

string $msg
$log_level

Returns

\CI_Upload

display_errors()

display_errors(string  $open = '<p>', string  $close = '</p>') : string

Display the error message

Parameters

string $open
string $close

Returns

string

set_max_size()

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() method ...

Parameters

integer $n

Returns

\CI_Upload

_prep_filename()

_prep_filename(string  $filename) : string

Prep Filename

Prevents possible script execution from Apache's handling of files' multiple extensions.

Parameters

string $filename

Returns

string

_file_mime_type()

_file_mime_type(array  $file) : void

File MIME type

Detects the (actual) MIME type of the uploaded file, if possible. The input array is expected to be $_FILES[$field]

Parameters

array $file