One Hat Cyber Team
Your IP :
172.69.6.84
Server IP :
188.114.96.7
Server :
Linux advantage-project 5.14.0-503.26.1.el9_5.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Feb 19 16:28:19 UTC 2025 x86_64
Server Software :
Apache/2.4.62 (Rocky Linux) OpenSSL/3.2.2
PHP Version :
8.3.17
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
usr
/
share
/
doc
/
pecl
/
zip
/
examples
/
Edit File:
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); }
Simpan