要在zip檔案中讀取單一文件,程式碼如下 −
$handle = fopen('zip://test.zip#test.txt', 'r'); $result = ''; while (!feof($handle)) { $result .= fread($handle, 8192); } fclose($handle); echo $result;
輸出將是zip檔案的內容。
以上是如何使用PHP讀取zip歸檔中的單一文件的詳細內容。更多資訊請關注PHP中文網其他相關文章!