| 
/*
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);
 }
 |