class-file-uploader

Gesponsorde koppelingen

PHP script bestanden

  1. class-file-uploader

« Lees de omschrijving en reacties

De class

Code (php)
PHP script in nieuw venster Selecteer het PHP script
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
<?php
//*******************************************/
// Auteur: D-lightweb.nl
// Datum: 09-06-2008
//
//
// ChangeLog:
//  +
//******************************************/

class UploadFile
{
    ############################### Properties (Alfabetisch)
        
    protected $aErrors = array();
    protected $aExt = array();
    protected $aMimeTypes = array();
    
    protected $iBreedte;
    protected $iGrootte;    
    protected $iHoogte;

    protected $sMap;
    
    ############################### Magic Methods (Alfabetisch)
    public function __construct($sMap)
    {

        $this->SetMap($sMap);
    }

    
    ############################### Method (Alfabetisch)
    protected function CheckMap()
    {

        if(is_dir($this->sMap))
        {
            @
chmod($this->sMap, 0777);
        }

        else
        {
            if(!mkdir($this->sMap, 0755))
            {

                throw new Exception(__FILE__.' -> '.__CLASS__.' -> '.__FUNCTION__.' -> '.__LINE__.': map bestaat niet en kan niet worden gemaakt');
            }
        }
    }

    
    protected function PushError($sError)
    {

        $this->aErrors[] = $sError;
    }

    
    protected function ToBytes($sEenheid)
    {

        if($sEenheid == 'b')
        {

            $this->iGrootte = abs(ceil($this->iGrootte));
        }

        elseif($sEenheid == 'kb')
        {

            $this->iGrootte = abs(ceil($this->iGrootte * 1024));
        }

        elseif($sEenheid == 'mb')
        {

            $this->iGrootte = abs(ceil($this->iGrootte * 1024 * 1024));
        }

        else
        {
            throw new Exception(__FILE__.' -> '.__CLASS__.' -> '.__FUNCTION__.' -> '.__LINE__.': onbekende eenheid');
        }
    }

    
    public function UploadFile(array $aFile, $sNaam = '')
    {

        if(count($aFile) == 5)
        {

            if($aFile['error'] != 0)        //Geen fouten?
            {
                $this->PushError('Fout in bestand, waarschijnlijk vulde u niets in, probeer opnieuw.');
            }

            
            if(!empty($this->iGrootte))        //Is er een grootte opgegeven? Ja dan checken we hem
            {
                if($aFile['size'] > $this->iGrootte)
                {

                    $this->PushError('Het bestand is te groot('.$aFile['size'].' bytes), de maximale grootte is '.$this->iGrootte.' bytes.');
                }

                elseif($aFile['size'] == 0)
                {

                    $this->PushError('Het bestand is of veel te groot, of niet ingevuld.');
                }
            }

            
            if(!empty($this->iBreedte) || !empty($this->iHoogte) || count($this->aMimeTypes) != 0)    //Is er een breedte hoogte of mimetype opgegeven? Ja we checken ze, hier gaan we ervan uit dat het een plaatje is.
            {    
                if(($aTempInfo = getimagesize($aFile['tmp_name'])) === false)
                {

                    $this->PushError('Van dit (type) bestand kan geen informatie verkregen worden.');
                }

                else
                {                
                    list($iBreedte, $iHoogte, ,,) = $aTempInfo;
                    if(!empty($this->iBreedte))
                    {

                        if($iBreedte > $this->iBreedte)
                        {

                            $this->PushError('Sorry, het plaatje is te breed('.$iBreedte.'), maximale breedte is '.$this->iBreedte.'.');    
                        }
                    }

                    if(!empty($this->iHoogte))
                    {

                        if($iHoogte > $this->iHoogte)
                        {

                            $this->PushError('Sorry, het plaatje is te hoog('.$iHoogte.'), maximale hoogte is '.$this->iHoogte.'.');    
                        }
                    }

                    if(count($this->aMimeTypes) != 0)
                    {

                        if(!in_array(strtolower($aTempInfo['mime']), $this->aMimeTypes))
                        {

                            $this->PushError('Dit type afbeelding('.$aTempInfo['mime'].') wordt niet ondersteund.');
                        }
                    }
                }
            }

            
            if(count($this->aExt) != 0)            //Extensie opgegeven? Ja dan checken we die
            {                
                if(($aTempInfo = pathinfo($aFile['name'])) === false)
                {

                    $this->PushError('Onbekende fout.');
                }

                
                $sExt = ((isset($aTempInfo['extension'])) ? ($aTempInfo['extension']) : ('onbekend'));
                if(!in_array(strtolower($sExt), $this->aExt))
                {

                    $this->PushError('Sorry, bestanden met de extensie ('.$sExt.') mogen niet worden geupload.');
                }
            }

            
            if(count($this->GetErrors()) == 0)    //Geen errors ontstaan? We gaan uploaden, eventueel hernoemen we het bestand nog.
            {
                if(is_uploaded_file($aFile['tmp_name']))
                {

                    $sPath = $this->sMap.strtolower($aFile['name']);
                    if(move_uploaded_file($aFile['tmp_name'], $sPath))
                    {

                        if(!empty($sNaam))
                        {

                            $sNieuweNaam = $this->sMap.$sNaam.'.'.end(explode('.', $sPath));
                            if(!rename($sPath, $sNieuweNaam ))
                            {

                                unlink($sPath);
                                $this->PushError('Kon bestand niet hernoemen, bestand is van de server verwijderd, probeer opnieuw.');
                                return false;
                            }

                            else
                            {
                                return $sNieuweNaam;
                            }
                        }

                        else
                        {                            
                            return $sPath;
                        }
                    }

                    else
                    {
                        $this->PushError('Fout bij het uploaden.');
                        return false;
                    }
                }

                else
                {
                    $this->PushError('De waardes graag via het formulier invullen.');
                    return false;
                }
            }

            else
            {
                return false;
            }
        }
        
        else
        {
            throw new Exception(__FILE__.' -> '.__CLASS__.' -> '.__FUNCTION__.' -> '.__LINE__.': Verkeerde array');
        }
    }

    
    ############################### Setters (Alfabetisch)
    public function SetExtensions(array $aExt)
    {

        foreach($aExt as $sExt)
        {
    
            $this->aExt[] = strtolower($sExt);
        }
    }

    
    public function SetFormaat($iBreedte, $iHoogte)
    {

        if(ctype_digit($iBreedte) && ctype_digit($iHoogte))
        {

            $this->iBreedte = $iBreedte;
            $this->iHoogte = $iHoogte;
        }

        else
        {
            throw new Exception(__FILE__.' -> '.__CLASS__.' -> '.__FUNCTION__.' -> '.__LINE__.': Cijfer vereist bij beide parameters');
        }
    }

    
    public function SetGrootte($iGrootte, $sEenheid = 'b')
    {

        if(is_numeric($iGrootte))
        {

            $this->iGrootte = $iGrootte;
            $this->ToBytes($sEenheid);
        }

        else
        {
            throw new Exception(__FILE__.' -> '.__CLASS__.' -> '.__FUNCTION__.' -> '.__LINE__.': Cijfer vereist als eerste parameter');
        }
    }

    
    public function SetMap($sMap)
    {

        if(substr($sMap, -1, 1) == '/')
        {

            $this->sMap = $sMap;
        }

        else
        {
            $this->sMap = $sMap.'/';
        }

        $this->CheckMap();
    }

    
    public function SetMimeTypes(array $aMimes)
    {

        foreach($aMimes as $sMime)
        {
    
            $this->aMimeTypes[] = strtolower($sMime);
        }
    }

    
    ############################### Getters (Alfabetisch)    
    public function GetErrors()
    {

        return $this->aErrors;
    }

    
    public function GetExtensions()
    {

        return $this->aExt;
    }

    
    public function GetFormaat()
    {

        return array('breedte' => $this->sBreedte, 'hoogte' => $sHoogte);
    }

    
    public function GetGrootte()
    {

        return $this->sGrootte;
    }

    
    public function GetMap()
    {

        return $this->sMap;
    }

    
    public function GetMimeTypes()
    {

        return $this->aMimeTypes;
    }
}

?>


Voorbeeld
Code (php)
PHP script in nieuw venster Selecteer het PHP script
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
<?php
define('DEBUG', true);
error_reporting(E_ALL);
ini_set('display_errors', DEBUG);
 
$sContent = NULL;
$sTitel = NULL;

include('./class.php');

$sTitel .= 'D-lightweb | Phphulp | Voorbeeld FileUploadClass';

try
{    
    $oUpload = new UploadFile(dirname(__FILE__).'/uploads/');
    $oUpload->SetGrootte('50', 'kb');
    $oUpload->SetFormaat('800', '800');
    $oUpload->SetMimeTypes(array('image/jpeg', 'image/gif'));
    $oUpload->SetExtensions(array('jpg', 'jpeg', 'gif'));
            
    if($_SERVER['REQUEST_METHOD'] == 'POST')
    {

        if(($sPath = $oUpload->UploadFile($_FILES['fFoto'], rand(1000,9999).time())) !== false)
        {

            $sContent .= '<p style="font-family:Verdana; font-size:11px;">Het lukte! ';
            $sContent .= 'Het bestand staat nu hier: '.$sPath;
            $sContent .= '<br /><a style="color:black;" href="'.basename(__FILE__).'">Ga terug</a></p>';
        }

        else
        {
            $sContent .=  '<span style="font-family:Verdana; padding:5px; font-size:12px; font-weight:bold; display:block; color:red;">Er ging wat fout:</span>';
            foreach($oUpload->GetErrors() as $sError)
            {

                $sContent .= '<span style="color:red; padding:5px; font-family:Verdana; font-size:11px; display:block;">'.$sError.'</span>';
            }
        }
    }

    
    $sContent .= '<form action="'.basename(__FILE__).'" method="post" style="padding:5px; margin:5px; border: 1px solid #DDD; width:400px;" enctype="multipart/form-data" name="fForm"><p style="margin:0px; padding:5px;"><input style="width:100%;" type="file" name="fFoto" id="fFoto" /></p><p style="margin:0px; padding:5px;"><input type="submit" style="border:1px solid #7F9DB9; padding:5px; width:100%; background:white;" value="verzenden" name="fSubmit" /></p></form>';
}

catch(Exception $oException)
{

    if(DEBUG)
    {

        $sContent = $oException->getMessage();
    }

    else
    {
        $sContent .= 'Pagina kon niet geladen worden, is dat ff klote...';
    }
}

?>


<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title><?php echo ((isset($sTitel)) ? ($sTitel) : ('Geen titel')); ?></title>
</head>

<body>
<?php
echo ((isset($sContent)) ? ($sContent) : ('Geen inhoud voor deze pagina'));
?>

</body>
</html>

 
 

Om de gebruiksvriendelijkheid van onze website en diensten te optimaliseren maken wij gebruik van cookies. Deze cookies gebruiken wij voor functionaliteiten, analytische gegevens en marketing doeleinden. U vindt meer informatie in onze privacy statement.