HEX
Server: Apache
System: Linux s198.coreserver.jp 5.15.0-151-generic #161-Ubuntu SMP Tue Jul 22 14:25:40 UTC 2025 x86_64
User: nagasaki (10062)
PHP: 7.1.33
Disabled: NONE
Upload Files
File: //opt/remi/php81/root/usr/share/doc/pecl/zip/examples/oldapi.php
<?php

$zip = zip_open('examples/test1.zip');
var_dump($zip);

if ($zip) {
	$i = 0;
	while ($zip_entry = zip_read($zip)) {
		var_dump($zip_entry);
		$txt = zip_entry_read($zip_entry, 10);
        echo $i . ": " . $txt . "size: " . zip_entry_filesize($zip_entry) . 
			"comp_method: " . zip_entry_compressionmethod($zip_entry) . 
			"\n";
		$i++;
	}
	var_dump($zip_entry);
}