\Pluf\TestFile

Create File fixtuer in unit testing

Summary

Methods
Properties
Constants
loadFile()
No public properties found
No constants found
No protected methods found
No protected properties found
N/A
No private methods found
No private properties found
N/A

Methods

loadFile()

loadFile(string  $file) : array

Create a file upload structure

The global $_FILES will contain all the uploaded file information. Its contents from the example form is as follows. Note that this assumes the use of the file upload name userfile, as used in the example script above. This can be any name.

$_FILES['userfile']['name'] The original name of the file on the client machine.

$_FILES['userfile']['type'] The mime type of the file, if the browser provided this information. An example would be "image/gif". This mime type is however not checked on the PHP side and therefore don't take its value for granted.

$_FILES['userfile']['size'] The size, in bytes, of the uploaded file.

$_FILES['userfile']['tmp_name'] The temporary filename of the file in which the uploaded file was stored on the server.

$_FILES['userfile']['error'] The error code associated with this file upload.

Parameters

string $file

Returns

array —

file structer