1. PHP / Говнокод #21312

    −18

    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
    14. 14
    15. 15
    16. 16
    17. 17
    18. 18
    19. 19
    20. 20
    21. 21
    $path_parts = pathinfo($files[0]);
    $format = $path_parts['extension'];
    if ($format == "zip")
    {
    $file = file_get_contents($files[0]);
    $file = base64_encode($file);
    $dir = str_replace("zip","nodnol",$files[0]);
    file_put_contents ($dir,$file);
    }
    if ($format == "nodnol")
    {
    $file = file_get_contents($files[0]);
    $file = base64_decode($file);
    $dir = str_replace("nodnol","zip",$files[0]);
    file_put_contents ($dir,$file);
    }
    
    if (($format != "nodnol") and ($format != "zip") and ($format != "rar"))
    {
    echo ("Ошибка! Данный формат не поддерживается программой!");
    }

    Кодирование архивов в формат .nodnol и на оборот.

    Запостил: NodnolStudio, 02 Октября 2016

    Комментарии (21) RSS

    Добавить комментарий