Recommend this page to a friend! |
Download |
Info | Files | Install with Composer | Download | Reputation | Support forum | Blog | Links |
Last Updated | Ratings | Unique User Downloads | Download Rankings | |||||
2024-09-14 (6 days ago) | 75% | Total: 19,369 This week: 13 | All time: 38 This week: 3 |
Version | License | PHP version | Categories | |||
class_upload_php 1.0.69 | GNU General Publi... | 4 | Graphics, Files and Folders |
Description | Author | |||||||||||||
It is the ideal class to quickly integrate file upload and image manipulation in your site. That's all you need for a gallery script for instance. |
|
Recommendation for a PHP class to convert jpeg to webp
How to resize a jpg an convert the same in a .webp file
Homepage : http://www.verot.net/php_class_upload.htm
Demo : http://www.verot.net/php_class_upload_samples.htm
Donations: http://www.verot.net/php_class_upload_donate.htm
Commercial use: http://www.verot.net/php_class_upload_license.htm
This class manages file uploads for you. In short, it manages the uploaded file, and allows you to do whatever you want with the file, especially if it is an image, and as many times as you want.
It is the ideal class to quickly integrate file upload in your site. If the file is an image, you can convert, resize, crop it in many ways. You can also apply filters, add borders, text, watermarks, etc... That's all you need for a gallery script for instance. Supported formats are PNG, JPG, GIF, WEBP and BMP.
You can also use the class to work on local files, which is especially useful to use the image manipulation features. The class also supports Flash uploaders and XMLHttpRequest.
The class works with PHP 5.3+, PHP 7 and PHP 8 (use version 1.x for PHP 4 support), and its error messages can be localized at will.
Edit your composer.json file to include the following:
{
"require": {
"verot/class.upload.php": "*"
}
}
Or install it directly:
composer require verot/class.upload.php
Check out the test/
directory, which you can load in your browser. You can test the class and its different ways to instantiate it, see some code examples, and run some tests.
Create a simple HTML file, with a form such as:
<form enctype="multipart/form-data" method="post" action="upload.php">
<input type="file" size="32" name="image_field" value="">
<input type="submit" name="Submit" value="upload">
</form>
Create a file called upload.php (into which you have first loaded the class):
$handle = new \Verot\Upload\Upload($_FILES['image_field']);
if ($handle->uploaded) {
$handle->file_new_name_body = 'image_resized';
$handle->image_resize = true;
$handle->image_x = 100;
$handle->image_ratio_y = true;
$handle->process('/home/user/files/');
if ($handle->processed) {
echo 'image resized';
$handle->clean();
} else {
echo 'error : ' . $handle->error;
}
}
You instanciate the class with the $_FILES['my_field']
array where _my_field_ is the field name from your upload form. The class will check if the original file has been uploaded to its temporary location (alternatively, you can instanciate the class with a local filename).
You can then set a number of processing variables to act on the file. For instance, you can rename the file, and if it is an image, convert and resize it in many ways. You can also set what will the class do if the file already exists.
Then you call the function process()
to actually perform the actions according to the processing parameters you set above. It will create new instances of the original file, so the original file remains the same between each process. The file will be manipulated, and copied to the given location. The processing variables will be reset once it is done.
You can repeat setting up a new set of processing variables, and calling process()
again as many times as you want. When you have finished, you can call clean()
to delete the original uploaded file.
If you don't set any processing parameters and call process()
just after instanciating the class. The uploaded file will be simply copied to the given location without any alteration or checks.
Don't forget to add enctype="multipart/form-data"
in your form tag <form>
if you want your form to upload the file.
The class is now namespaced in the Verot/Upload
namespace. If you have the error Fatal error: Class 'Upload' not found, then use
the class fully qualified name, or instantiate the class with its fully qualified name:
use Verot\Upload\Upload;
$handle = new Upload($_FILES['image_field']);
or
$handle = new \Verot\Upload\Upload($_FILES['image_field']);
Instantiate the class with the local filename, as following:
$handle = new Upload('/home/user/myfile.jpg');
Instantiate the class with the special _php:_ keyword, as following:
$handle = new Upload('php:'.$_SERVER['HTTP_X_FILE_NAME']);
Prefixing the argument with _php:_ tells the class to retrieve the uploaded data in _php://input_, and the rest is the stream's filename, which is generally in $_SERVER['HTTP_X_FILE_NAME']
. But you can use any other name you see fit:
$handle = new Upload('php:mycustomname.ext');
Instantiate the class with the special _data:_ keyword, as following:
$handle = new Upload('data:'.$file_contents);
If your data is base64-encoded, the class provides a simple _base64:_ keyword, which will decode your data prior to using it:
$handle = new Upload('base64:'.$base64_file_contents);
Instantiate the class with a second argument being the language code:
$handle = new Upload($_FILES['image_field'], 'fr_FR');
$handle = new Upload('/home/user/myfile.jpg', 'fr_FR');
Simply call process()
without an argument (or with null as first argument):
$handle = new Upload($_FILES['image_field']);
header('Content-type: ' . $handle->file_src_mime);
echo $handle->process();
die();
Or if you want to force the download of the file:
$handle = new Upload($_FILES['image_field']);
header('Content-type: ' . $handle->file_src_mime);
header("Content-Disposition: attachment; filename=".rawurlencode($handle->file_src_name).";");
echo $handle->process();
die();
By default, the class relies on MIME type detection to assess whether the file can be uploaded or not. Several MIME type detection methods are used, depending on the server configuration. The class relies on a blacklist of dangerous file extensions to prevent uploads (or to rename dangerous scripts as text files), as well as a whitelist of accepted MIME types.
But it is not the purpose of this class to do in-depth checking and heuristics to attempt to detect maliciously crafted files. For instance, an attacker can craft a file that will have the correct MIME type, but will carry a malicious payload, such as a valid GIF file which would contain some code leading to a XSS vulnerability. If this GIF file has a .html extension, it may be uploaded (depending on the class's settings) and display an XSS vulnerability.
However, you can mitigate this by restricting the kind of files that can be uploaded, using allowed
and forbidden
, to whitelist and blacklist files depending on their MIME type or extension. The most secure option would be to only whitelist extensions that you want to allow through, and then making sure that your server always serves the file with the content-type based on the file extension.
For instance, if you only want to allow one type of file, you could whitelist only its file extension. In the following example, only .html files are let through, and are not converted to a text file:
$handle->allowed = array('html');
$handle->forbidden = array();
$handle->no_script = false;
In the end, it is your responsibility to make sure the correct files are uploaded. But more importantly, it is your responsibility to serve the uploaded files correctly, for instance by forcing the server to always provide the content-type based on the file extension.
If the class doesn't do what you want it to do, you can display the log, in order to see in details what the class does. To obtain the log, just add this line at the end of your code:
echo $handle->log;
Your problem may have been already discussed in the Frequently Asked Questions : http://www.verot.net/php_class_upload_faq.htm
Failing that, you can search in the forums, and ask a question there: http://www.verot.net/php_class_upload_forum.htm. Please don't use Github issues to ask for help.
> Note: all the parameters in this section are reset after each process.
file_new_name_body replaces the name body (default: null)
$handle->file_new_name_body = 'new name';
file_name_body_add appends to the name body (default: null)
$handle->file_name_body_add = '_uploaded';
file_name_body_pre prepends to the name body (default: null)
$handle->file_name_body_pre = 'thumb_';
file_new_name_ext replaces the file extension (default: null)
$handle->file_new_name_ext = 'txt';
file_safe_name formats the filename (spaces changed to _, etc...) (default: true)
$handle->file_safe_name = true;
file_force_extension forces an extension if there isn't any (default: true)
$handle->file_force_extension = true;
file_overwrite sets behaviour if file already exists (default: false)
$handle->file_overwrite = true;
file_auto_rename automatically renames file if it already exists (default: true)
$handle->file_auto_rename = true;
dir_auto_create automatically creates destination directory if missing (default: true)
$handle->dir_auto_create = true;
dir_auto_chmod automatically attempts to chmod the destination directory if not writeable (default: true)
$handle->dir_auto_chmod = true;
dir_chmod chmod used when creating directory or if directory not writeable (default: 0777)
$handle->dir_chmod = 0777;
file_max_size sets maximum upload size (default: _upload_max_filesize_ from php.ini)
$handle->file_max_size = '1024'; // 1KB
mime_check sets if the class check the MIME against the `allowed` list (default: true)
$handle->mime_check = true;
no_script sets if the class turns dangerous scripts into text files (default: true)
$handle->no_script = false;
allowed array of allowed mime-types or file extensions (or one string). wildcard accepted, as in _image/*_ (default: check `init()`)
$handle->allowed = array('application/pdf','application/msword', 'image/*');
forbidden array of forbidden mime-types or file extensions (or one string). wildcard accepted, as in _image/*_ (default: check `init()`)
$handle->forbidden = array('application/*');
image_convert if set, image will be converted (possible values : ''|'png'|'webp'|'jpeg'|'gif'|'bmp'; default: '')
$handle->image_convert = 'jpg';
image_background_color if set, will forcibly fill transparent areas with the color, in hexadecimal (default: null)
$handle->image_background_color = '#FF00FF';
image_default_color fallback color background color for non alpha-transparent output formats, such as JPEG or BMP, in hexadecimal (default: #FFFFFF)
$handle->image_default_color = '#FF00FF';
png_compression sets the compression level for PNG images, between 1 (fast but large files) and 9 (slow but smaller files) (default: null (Zlib default))
$handle->png_compression = 9;
webp_quality sets the compression quality for WEBP images (default: 85)
$handle->webp_quality = 50;
jpeg_quality sets the compression quality for JPEG images (default: 85)
$handle->jpeg_quality = 50;
jpeg_size if set to a size in bytes, will approximate `jpeg_quality` so the output image fits within the size (default: null)
$handle->jpeg_size = 3072;
image_interlace if set to true, the image will be saved interlaced (if it is a JPEG, it will be saved as a progressive PEG) (default: false)
$handle->image_interlace = true;
The following eight settings can be used to invalidate an upload if the file is an image (note that _open_basedir_ restrictions prevent the use of these settings)
image_max_width if set to a dimension in pixels, the upload will be invalid if the image width is greater (default: null)
$handle->image_max_width = 200;
image_max_height if set to a dimension in pixels, the upload will be invalid if the image height is greater (default: null)
$handle->image_max_height = 100;
image_max_pixels if set to a number of pixels, the upload will be invalid if the image number of pixels is greater (default: null)
$handle->image_max_pixels = 50000;
image_max_ratio if set to a aspect ratio (width/height), the upload will be invalid if the image apect ratio is greater (default: null)
$handle->image_max_ratio = 1.5;
image_min_width if set to a dimension in pixels, the upload will be invalid if the image width is lower (default: null)
$handle->image_min_width = 100;
image_min_height if set to a dimension in pixels, the upload will be invalid if the image height is lower (default: null)
$handle->image_min_height = 500;
image_min_pixels if set to a number of pixels, the upload will be invalid if the image number of pixels is lower (default: null)
$handle->image_min_pixels = 20000;
image_min_ratio if set to a aspect ratio (width/height), the upload will be invalid if the image apect ratio is lower (default: null)
$handle->image_min_ratio = 0.5;
image_resize determines is an image will be resized (default: false)
$handle->image_resize = true;
The following variables are used only if _image_resize_ == true
image_x destination image width (default: 150)
$handle->image_x = 100;
image_y destination image height (default: 150)
$handle->image_y = 200;
Use either one of the following
image_ratio if true, resize image conserving the original sizes ratio, using `image_x` AND `image_y` as max sizes if true (default: false)
$handle->image_ratio = true;
image_ratio_crop if true, resize image conserving the original sizes ratio, using `image_x` AND `image_y` as max sizes, and cropping excedent to fill the space. setting can also be a string, with one or more from 'TBLR', indicating which side of the image will be kept while cropping (default: false)
$handle->image_ratio_crop = true;
image_ratio_fill if true, resize image conserving the original sizes ratio, using `image_x` AND `image_y` as max sizes, fitting the image in the space and coloring the remaining space. setting can also be a string, with one or more from 'TBLR', indicating which side of the space the image will be in (default: false)
$handle->image_ratio_fill = true;
image_ratio_x if true, resize image, calculating `image_x` from `image_y` and conserving the original sizes ratio (default: false)
$handle->image_ratio_x = true;
image_ratio_y if true, resize image, calculating `image_y` from `image_x` and conserving the original sizes ratio (default: false)
$handle->image_ratio_y = true;
image_ratio_pixels if set to a long integer, resize image, calculating `image_y` and `image_x` to match a the number of pixels (default: false)
$handle->image_ratio_pixels = 25000;
And eventually prevent enlarging or shrinking images
image_no_enlarging cancel resizing if the resized image is bigger than the original image, to prevent enlarging (default: false)
$handle->image_no_enlarging = true;
image_no_shrinking cancel resizing if the resized image is smaller than the original image, to prevent shrinking (default: false)
$handle->image_no_shrinking = true;
The following image manipulations require GD2+
image_brightness if set, corrects the brightness. value between -127 and 127 (default: null)
$handle->image_brightness = 40;
image_contrast if set, corrects the contrast. value between -127 and 127 (default: null)
$handle->image_contrast = 50;
image_opacity if set, changes the image opacity. value between 0 and 100 (default: null)
$handle->image_opacity = 50;
image_tint_color if set, will tint the image with a color, value as hexadecimal #FFFFFF (default: null)
$handle->image_tint_color = '#FF0000';
image_overlay_color if set, will add a colored overlay, value as hexadecimal #FFFFFF (default: null)
$handle->image_overlay_color = '#FF0000';
image_overlay_opacity used when `image_overlay_color` is set, determines the opacity (default: 50)
$handle->image_overlay_opacity = 20;
image_negative inverts the colors in the image (default: false)
$handle->image_negative = true;
image_greyscale transforms an image into greyscale (default: false)
$handle->image_greyscale = true;
image_threshold applies a threshold filter. value between -127 and 127 (default: null)
$handle->image_threshold = 20;
image_pixelate pixelate an image, value is block size (default: null)
$handle->image_pixelate = 10;
image_unsharp applies an unsharp mask, with alpha transparency support (default: false)
$handle->image_unsharp = true;
image_unsharp_amount unsharp mask amount, typically 50 - 200 (default: 80)
$handle->image_unsharp_amount = 120;
image_unsharp_radius unsharp mask radius, typically 0.5 - 1 (default: 0.5)
$handle->image_unsharp_radius = 1;
image_unsharp_threshold unsharp mask threshold, typically 0 - 5 (default: 1)
$handle->image_unsharp_threshold = 0;
image_text creates a text label on the image, value is a string, with eventual replacement tokens (default: null)
$handle->image_text = 'test';
image_text_direction text label direction, either 'h' horizontal or 'v' vertical (default: 'h')
$handle->image_text_direction = 'v';
image_text_color text color for the text label, in hexadecimal (default: #FFFFFF)
$handle->image_text_color = '#FF0000';
image_text_opacity text opacity on the text label, integer between 0 and 100 (default: 100)
$handle->image_text_opacity = 50;
image_text_background text label background color, in hexadecimal (default: null)
$handle->image_text_background = '#FFFFFF';
image_text_background_opacity text label background opacity, integer between 0 and 100 (default: 100)
$handle->image_text_background_opacity = 50;
image_text_font built-in font for the text label, from 1 to 5. 1 is the smallest (default: 5). Value can also be a string, which represents the path to a GDF or TTF font (TrueType).
$handle->image_text_font = 4; // or './font.gdf' or './font.ttf'
image_text_size font size for TrueType fonts, in pixels (GD1) or points (GD1) (default: 16) (TrueType fonts only)
$handle->image_text_size = 24;
image_text_angle text angle for TrueType fonts, in degrees, with 0 degrees being left-to-right reading text(default: null) (TrueType fonts only)
$handle->image_text_angle = 45;
image_text_x absolute text label position, in pixels from the left border. can be negative (default: null)
$handle->image_text_x = 5;
image_text_y absolute text label position, in pixels from the top border. can be negative (default: null)
$handle->image_text_y = 5;
image_text_position text label position withing the image, a combination of one or two from 'TBLR': top, bottom, left, right (default: null)
$handle->image_text_position = 'LR';
image_text_padding text label padding, in pixels. can be overridden by `image_text_padding_x` and `image_text_padding_y` (default: 0)
$handle->image_text_padding = 5;
image_text_padding_x text label horizontal padding (default: null)
$handle->image_text_padding_x = 2;
image_text_padding_y text label vertical padding (default: null)
$handle->image_text_padding_y = 10;
image_text_alignment text alignment when text has multiple lines, either 'L', 'C' or 'R' (default: 'C') (GD fonts only)
$handle->image_text_alignment = 'R';
image_text_line_spacing space between lines in pixels, when text has multiple lines (default: 0) (GD fonts only)
$handle->image_text_line_spacing = 3;
image_auto_rotate automatically rotates the image according to EXIF data (JPEG only) (default: true, applies even if there is no image manipulations)
$handle->image_auto_rotate = false;
image_flip flips image, wither 'h' horizontal or 'v' vertical (default: null)
$handle->image_flip = 'h';
image_rotate rotates image. Possible values are 90, 180 and 270 (default: null)
$handle->image_rotate = 90;
image_crop crops image. accepts 4, 2 or 1 values as 'T R B L' or 'TB LR' or 'TBLR'. dimension can be 20, or 20px or 20% (default: null)
$handle->image_crop = array(50,40,30,20); OR '-20 20%'...
image_precrop crops image, before an eventual resizing. accepts 4, 2 or 1 values as 'T R B L' or 'TB LR' or 'TBLR'. dimension can be 20, or 20px or 20% (default: null)
$handle->image_precrop = array(50,40,30,20); OR '-20 20%'...
image_bevel adds a bevel border to the image. value is thickness in pixels (default: null)
$handle->image_bevel = 20;
image_bevel_color1 top and left bevel color, in hexadecimal (default: #FFFFFF)
$handle->image_bevel_color1 = '#FFFFFF';
image_bevel_color2 bottom and right bevel color, in hexadecimal (default: #000000)
$handle->image_bevel_color2 = '#000000';
image_border adds a unicolor border to the image. accepts 4, 2 or 1 values as 'T R B L' or 'TB LR' or 'TBLR'. dimension can be 20, or 20px or 20% (default: null)
$handle->image_border = '3px'; OR '-20 20%' OR array(3,2)...
image_border_color border color, in hexadecimal (default: #FFFFFF)
$handle->image_border_color = '#FFFFFF';
image_border_opacity border opacity, integer between 0 and 100 (default: 100)
$handle->image_border_opacity = 50;
image_border_transparent adds a fading-to-transparent border to the image. accepts 4, 2 or 1 values as 'T R B L' or 'TB LR' or 'TBLR'. dimension can be 20, or 20px or 20% (default: null)
$handle->image_border_transparent = '3px'; OR '-20 20%' OR array(3,2)...
image_frame type of frame: 1=flat 2=crossed (default: null)
$handle->image_frame = 2;
image_frame_colors list of hex colors, in an array or a space separated string (default: '#FFFFFF #999999 #666666 #000000')
$handle->image_frame_colors = array('#999999', '#FF0000', '#666666', '#333333', '#000000');
image_frame_opacity frame opacity, integer between 0 and 100 (default: 100)
$handle->image_frame_opacity = 50;
image_watermark adds a watermark on the image, value is a local filename. accepted files are GIF, JPG, BMP, WEBP, PNG and PNG alpha (default: null)
$handle->image_watermark = 'watermark.png';
image_watermark_x absolute watermark position, in pixels from the left border. can be negative (default: null)
$handle->image_watermark_x = 5;
image_watermark_y absolute watermark position, in pixels from the top border. can be negative (default: null)
$handle->image_watermark_y = 5;
image_watermark_position watermark position withing the image, a combination of one or two from 'TBLR': top, bottom, left, right (default: null)
$handle->image_watermark_position = 'LR';
image_watermark_no_zoom_in prevents the watermark to be resized up if it is smaller than the image (default: true)
$handle->image_watermark_no_zoom_in = false;
image_watermark_no_zoom_out prevents the watermark to be resized down if it is bigger than the image (default: false)
$handle->image_watermark_no_zoom_out = true;
image_reflection_height if set, a reflection will be added. Format is either in pixels or percentage, such as 40, '40', '40px' or '40%' (default: null)
$handle->image_reflection_height = '25%';
image_reflection_space space in pixels between the source image and the reflection, can be negative (default: null)
$handle->image_reflection_space = 3;
image_reflection_color reflection background color, in hexadecimal. Now deprecated in favor of `image_default_color` (default: #FFFFFF)
$handle->image_default_color = '#000000';
image_reflection_opacity opacity level at which the reflection starts, integer between 0 and 100 (default: 60)
$handle->image_reflection_opacity = 60;
process()
If the file is a supported image type (and _open_basedir_ restrictions allow it)
process()
If the file is a supported image type
Most of the image operations require GD. GD2 is greatly recommended
Version 1.x supports PHP 4, 5 and 7, but is not namespaced. Use it if you need support for PHP <5.3
Version 2.x supports PHP 5.3+, PHP 7 and PHP 8.
Files (54) |
File | Role | Description | ||
---|---|---|---|---|
src (1 file, 1 directory) | ||||
test (12 files) | ||||
composer.json | Data | Auxiliary data | ||
LICENSE.txt | Doc. | Documentation | ||
README.md | Data | Auxiliary data |
Files (54) | / | src | / | lang |
File | Role | Description |
---|---|---|
class.upload.ar_EG.php | Aux. | Auxiliary script |
class.upload.ca_CA.php | Aux. | Auxiliary script |
class.upload.cs_CS.php | Aux. | Auxiliary script |
class.upload.da_DK.php | Aux. | Auxiliary script |
class.upload.de_DE.php | Aux. | Auxiliary script |
class.upload.el_GR.php | Aux. | Auxiliary script |
class.upload.es_ES.php | Aux. | Auxiliary script |
class.upload.et_EE.php | Aux. | Auxiliary script |
class.upload.fa_IR.php | Aux. | Farsi translation |
class.upload.fi_FI.php | Aux. | Finnish translation |
class.upload.fr_FR.php | Aux. | Auxiliary script |
class.upload.he_IL.php | Aux. | Auxiliary script |
class.upload.hr_HR.php | Aux. | Auxiliary script |
class.upload.hu_HU.php | Aux. | Auxiliary script |
class.upload.id_ID.php | Aux. | Auxiliary script |
class.upload.it_IT.php | Aux. | Auxiliary script |
class.upload.ja_JP.php | Aux. | Auxiliary script |
class.upload.lt_LT.php | Aux. | Auxiliary script |
class.upload.mk_MK.php | Aux. | Auxiliary script |
class.upload.nl_NL.php | Aux. | Auxiliary script |
class.upload.no_NO.php | Aux. | Auxiliary script |
class.upload.pl_PL.php | Aux. | Auxiliary script |
class.upload.pt_BR.php | Aux. | Auxiliary script |
class.upload.ro_RO.php | Aux. | Auxiliary script |
class.upload.ru_RU.php | Aux. | Auxiliary script |
class.upload.ru_RU.windows-1251.php | Aux. | Auxiliary script |
class.upload.sk_SK.php | Aux. | Auxiliary script |
class.upload.sr_YU.php | Aux. | Auxiliary script |
class.upload.sv_SE.php | Aux. | Auxiliary script |
class.upload.ta_TA.php | Aux. | added Tamil translation |
class.upload.tr_TR.php | Aux. | Auxiliary script |
class.upload.uk_UA.php | Aux. | Auxiliary script |
class.upload.uk_UA.windows-1251.php | Aux. | Auxiliary script |
class.upload.vn_VN.php | Aux. | Auxiliary script |
class.upload.xx_XX.php | Aux. | Auxiliary script |
class.upload.zh_CN.gb-2312.php | Aux. | Auxiliary script |
class.upload.zh_CN.php | Aux. | Auxiliary script |
class.upload.zh_TW.php | Aux. | Auxiliary script |
Files (54) | / | test |
File | Role | Description |
---|---|---|
bg.gif | Icon | Icon image |
foo.gdf | Data | Auxiliary data |
foo.ttf | Data | Auxiliary data |
index.html | Doc. | Documentation |
test.bmp | Icon | Icon image |
test.gif | Icon | Icon image |
test.jpg | Icon | Icon image |
test.png | Icon | Icon image |
test.webp | Data | Auxiliary data |
upload.php | Example | Example script |
watermark.png | Icon | Icon image |
watermark_large.png | Icon | Icon image |
The PHP Classes site has supported package installation using the Composer tool since 2013, as you may verify by reading this instructions page. |
Install with Composer |
Version Control | Unique User Downloads | Download Rankings | |||||||||||||||
100% |
|
|
Applications that use this package |
If you know an application of this package, send a message to the author to add a link here.
Related pages |
Class homepage |
Doc |
Discussion forum |
Auto-generated samples |
Changelog |
Translation files |
Pages that reference this package |
class.upload.php è una classe in php giunta alla versione 0.25, rilascia sotto la licenza GNU V2, che permette l’upload dei files e la manipolazione delle immagini in maniera molto semplice e potente... |
Uploading files/images is a task that is required in almost all web applications... |
Many times in my coding projects i had to do an upload form that will upload an image... |
If you know anything about OOP you can also use a class specifically dedicated to upload... |