1. Список говнокодов пользователя varpt

    Всего: 1

  2. PHP / Говнокод #23216

    0

    1. 01
    2. 02
    3. 03
    4. 04
    5. 05
    6. 06
    7. 07
    8. 08
    9. 09
    10. 10
    11. 11
    12. 12
    13. 13
    public function upload($deleteTempFile = true)
        {
            $tmp = $_FILES['UploadExcelFileInn']['tmp_name']['fileExcel'];
            $file = '/home/user/public/documents/FileExcel.' . $this->fileExcel->extension;
    
            if ($deleteTempFile) {
                return move_uploaded_file($_FILES['UploadExcelFileInn']['tmp_name']['fileExcel'], $file);
            } elseif (is_uploaded_file($tmp)) {
                return copy($tmp, $file);
            }
    
            return false;
        }

    Охуенная переносимость кода ))

    varpt, 25 Июля 2017

    Комментарии (0)