Server IP : 104.21.38.3 / Your IP : 162.158.170.194 Web Server : Apache System : Linux krdc-ubuntu-s-2vcpu-4gb-amd-blr1-01.localdomain 5.15.0-142-generic #152-Ubuntu SMP Mon May 19 10:54:31 UTC 2025 x86_64 User : www ( 1000) PHP Version : 7.4.33 Disable Function : passthru,exec,system,putenv,chroot,chgrp,chown,shell_exec,popen,proc_open,pcntl_exec,ini_alter,ini_restore,dl,openlog,syslog,readlink,symlink,popepassthru,pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,imap_open,apache_setenv MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /www/server/php/80/src/ext/zip/ |
Upload File : |
<?php /** @generate-function-entries */ /** * @return resource|int|false * @deprecated */ function zip_open(string $filename) {} /** * @param resource $zip * @deprecated */ function zip_close($zip): void {} /** * @param resource $zip * @return resource|false * @deprecated */ function zip_read($zip) {} /** * @param resource $zip_dp * @param resource $zip_entry * @deprecated */ function zip_entry_open($zip_dp, $zip_entry, string $mode = "rb"): bool {} /** * @param resource $zip_entry * @deprecated */ function zip_entry_close($zip_entry): bool {} /** * @param resource $zip_entry * @deprecated */ function zip_entry_read($zip_entry, int $len = 1024): string|false {} /** * @param resource $zip_entry * @deprecated */ function zip_entry_name($zip_entry): string|false {} /** * @param resource $zip_entry * @deprecated */ function zip_entry_compressedsize($zip_entry): int|false {} /** * @param resource $zip_entry * @deprecated */ function zip_entry_filesize($zip_entry): int|false {} /** * @param resource $zip_entry * @deprecated */ function zip_entry_compressionmethod($zip_entry): string|false {} class ZipArchive { /** @return bool|int */ public function open(string $filename, int $flags = 0) {} /** @return bool */ public function setPassword(string $password) {} /** @return bool */ public function close() {} /** @return int */ public function count() {} /** @return string */ public function getStatusString() {} /** @return bool */ public function addEmptyDir(string $dirname, int $flags = 0) {} /** @return bool */ public function addFromString(string $name, string $content, int $flags = ZipArchive::FL_OVERWRITE) {} /** @return bool */ public function addFile(string $filepath, string $entryname = "", int $start = 0, int $length = 0, int $flags = ZipArchive::FL_OVERWRITE) {} /** @return bool */ public function replaceFile(string $filepath, int $index, int $start = 0, int $length = 0, int $flags = 0) {} /** @return array|false */ public function addGlob(string $pattern, int $flags = 0, array $options = []) {} /** @return array|false */ public function addPattern(string $pattern, string $path = ".", array $options = []) {} /** @return bool */ public function renameIndex(int $index, string $new_name) {} /** @return bool */ public function renameName(string $name, string $new_name) {} /** @return bool */ public function setArchiveComment(string $comment) {} /** @return string|false */ public function getArchiveComment(int $flags = 0) {} /** @return bool */ public function setCommentIndex(int $index, string $comment) {} /** @return bool */ public function setCommentName(string $name, string $comment) {} #ifdef HAVE_SET_MTIME /** @return bool */ public function setMtimeIndex(int $index, int $timestamp, int $flags = 0) {} /** @return bool */ public function setMtimeName(string $name, int $timestamp, int $flags = 0) {} #endif /** @return string|false */ public function getCommentIndex(int $index, int $flags = 0) {} /** @return string|false */ public function getCommentName(string $name, int $flags = 0) {} /** @return bool */ public function deleteIndex(int $index) {} /** @return bool */ public function deleteName(string $name) {} /** @return array|false */ public function statName(string $name, int $flags = 0) {} /** @return array|false */ public function statIndex(int $index, int $flags = 0) {} /** @return int|false */ public function locateName(string $name, int $flags = 0) {} /** @return string|false */ public function getNameIndex(int $index, int $flags = 0) {} /** @return bool */ public function unchangeArchive() {} /** @return bool */ public function unchangeAll() {} /** @return bool */ public function unchangeIndex(int $index) {} /** @return bool */ public function unchangeName(string $name) {} /** @return bool */ public function extractTo(string $pathto, array|string|null $files = null) {} /** @return string|false */ public function getFromName(string $name, int $len = 0, int $flags = 0) {} /** @return string|false */ public function getFromIndex(int $index, int $len = 0, int $flags = 0) {} /** @return resource|false */ public function getStream(string $name) {} #ifdef ZIP_OPSYS_DEFAULT /** @return bool */ public function setExternalAttributesName(string $name, int $opsys, int $attr, int $flags = 0) {} /** @return bool */ public function setExternalAttributesIndex(int $index, int $opsys, int $attr, int $flags = 0) {} /** * @param int $opsys * @param int $attr * @return bool */ public function getExternalAttributesName(string $name, &$opsys, &$attr, int $flags = 0) {} /** * @param int $opsys * @param int $attr * @return bool */ public function getExternalAttributesIndex(int $index, &$opsys, &$attr, int $flags = 0) {} #endif /** @return bool */ public function setCompressionName(string $name, int $method, int $compflags = 0) {} /** @return bool */ public function setCompressionIndex(int $index, int $method, int $compflags = 0) {} #ifdef HAVE_ENCRYPTION /** @return bool */ public function setEncryptionName(string $name, int $method, ?string $password = null) {} /** @return bool */ public function setEncryptionIndex(int $index, int $method, ?string $password = null) {} #endif #ifdef HAVE_PROGRESS_CALLBACK /** @return bool */ public function registerProgressCallback(float $rate, callable $callback) {} #endif #ifdef HAVE_CANCEL_CALLBACK /** @return bool */ public function registerCancelCallback(callable $callback) {} #endif #ifdef HAVE_METHOD_SUPPORTED /** @return bool */ public static function isCompressionMethodSupported(int $method, bool $enc = true): bool {} /** @return bool */ public static function isEncryptionMethodSupported(int $method, bool $enc = true): bool {} #endif }