php ziparchive的用法:先開啟test.zip檔;然後在test.zip中加入image.txt檔;最後透過「$zip->addFromString(...)」在zip檔中的test.txt檔案追加內容即可。
本文操作環境:windows7系統、PHP7.1版,DELL G3電腦
php使用ZipArchive壓縮檔案的心得
$zip=new ZipArchive; if($zip->open('test.zip',ZipArchive::CREATE)===TRUE){ $zip->addFile('image.txt');//假设在当前路径下加入的文件名是image.txt $zip->close(); }
功能:預設開啟test.zip文件,如果不存在則建立一個test.zip文件,然後在test.zip中加入image.txt檔案。
注意:如果建立的zip檔裡沒有加入image.txt則建立的壓縮包不可見。
$zip->addFromString('test.txt','file content goes here');
功能:在zip檔案中的test.txt檔案追蹤內容
【推薦學習:《PHP影片教學》】
以上是php ziparchive怎麼用的詳細內容。更多資訊請關注PHP中文網其他相關文章!