Php dosya yükleme için bir özel hata işleme / raporlama işlevini yazıyorum ve döndürülen hata kodları 5 hariç 8 sayıların 0 biri olduğunu fark ettim.
Bu şekilde ben kullanıyorum ya da gerçekten kaynağında bir yazım hatası mı? Eğer öyle olsa onlar numarası '5 atlanır Ve neden, ben merak ediyorum.
Teşekkürler.
Edit
In response to Pekka
, here are the error codes from PHP manual.
0 | UPLOAD_ERR_OK | There is no error, the file uploaded with success. 1 | UPLOAD_ERR_INI_SIZE | Size exceeds upload_max_filesize in php.ini. 2 | UPLOAD_ERR_FORM_SIZE | Size exceeds MAX_FILE_SIZE specified in HTML form. 3 | UPLOAD_ERR_PARTIAL | The uploaded file was only partially uploaded. 4 | UPLOAD_ERR_NO_FILE | No file was uploaded.5|UPLOAD_ERROR_E| As expliained by @Progman, removed in rev. 81792 6 | UPLOAD_ERR_NO_TMP_DIR | Missing a temporary folder. 7 | UPLOAD_ERR_CANT_WRITE | Failed to write file to disk. 8 | UPLOAD_ERR_EXTENSION | File upload stopped by extension.