第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問(wèn)題,去搜搜看,總會(huì)有你想問(wèn)的

使用 Codeigniter zip 庫(kù)壓縮時(shí)出現(xiàn)阿拉伯語(yǔ)文件名問(wèn)題

使用 Codeigniter zip 庫(kù)壓縮時(shí)出現(xiàn)阿拉伯語(yǔ)文件名問(wèn)題

PHP
ITMISS 2022-10-09 17:29:01
我有某些文件要壓縮,其中一些有阿拉伯名稱,提取后,它們會(huì)損壞。我的 PHP 版本是 7.2.18,我使用的是 Codeigniter 3.1 框架。實(shí)際文件名:???? ??????.docx 壓縮文件名:+a+?+à+?_+o+?+|+è+?+?.docxpublic function generate_zip() {        $this->load->library('zip');        $zip_files = $this->document_model->get_documents();        foreach ($zip_files as $zip_file) {                 $this->zip->read_file('uploads/documents/' . $zip_file->document_file_name);        }        $this->zip->download('temp.zip');    }
查看完整描述

1 回答

?
飲歌長(zhǎng)嘯

TA貢獻(xiàn)1951條經(jīng)驗(yàn) 獲得超3個(gè)贊

請(qǐng)嘗試使用以下代碼。


/* creates a compressed zip file */

function create_zip($files = array(),$destination = '',$overwrite = false) {

    //if the zip file already exists and overwrite is false, return false

    if(file_exists($destination) && !$overwrite) { return false; }

    //vars

    $valid_files = array();

    //if files were passed in...

    if(is_array($files)) {

        //cycle through each file

        foreach($files as $file) {

            //make sure the file exists

            if(file_exists($file)) {

                $valid_files[] = $file;

            }

        }

    }

    //if we have good files...

    if(count($valid_files)) {

        //create the archive

        $zip = new ZipArchive();

        if($zip->open($destination,$overwrite ? ZIPARCHIVE::OVERWRITE : ZIPARCHIVE::CREATE) !== true) {

            return false;

        }

        //add the files

        foreach($valid_files as $file) {

            $zip->addFile($file,$file);

        }

        //debug

        //echo 'The zip archive contains ',$zip->numFiles,' files with a status of ',$zip->status;


        //close the zip -- done!

        $zip->close();


        //check to make sure the file exists

        return file_exists($destination);

    }

    else

    {

        return false;

    }

}


$files_to_zip = array(

    '????.txt',

);

//if true, good; if false, zip creation failed

$result = create_zip($files_to_zip,'my-archive.zip');


查看完整回答
反對(duì) 回復(fù) 2022-10-09
  • 1 回答
  • 0 關(guān)注
  • 134 瀏覽

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)