PHP Classes

File: example.php

Recommend this page to a friend!
  Classes of Christiaan Baartse   Uploaded Files   example.php   Download  
File: example.php
Role: Example script
Content type: text/plain
Description: Example usage
Class: Uploaded Files
Iterate over the uploaded files list
Author: By
Last change:
Date: 14 years ago
Size: 371 bytes
 

Contents

Class file image Download
/*
This allows you to access a file uploaded using the following inputtype
<input type="file" name="userfile[christiaan][][][is][gaaf][]" />
like
*/
<?php
$files
= new UploadedFiles($_FILES);
var_dump($files['userfile']['christiaan'][0][0]['is']['gaaf'][0]);
// or
foreach($files['userfile']['christiaan'][0][0]['is']['gaaf'] as $file) {
   
var_dump($file);
}