????JFIF??x?x????'
Server IP : 79.136.114.73 / Your IP : 216.73.216.238 Web Server : Apache/2.4.7 (Ubuntu) PHP/5.5.9-1ubuntu4.29 OpenSSL/1.0.1f System : Linux b8009 3.13.0-170-generic #220-Ubuntu SMP Thu May 9 12:40:49 UTC 2019 x86_64 User : www-data ( 33) PHP Version : 5.5.9-1ubuntu4.29 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,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, MySQL : ON | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /proc/self/root/home/b8009/php-5.6.22/ext/phar/tests/zip/files/ |
Upload File : |
<?php // stolen from PEAR2_Pyrus_Developer_Creator_Zip by Greg Beaver, the original author, for use in unit tests class zipmaker { /** * Path to archive file * * @var string */ protected $archive; /** * @var ZIPArchive */ protected $zip; protected $path; function __construct($path) { if (!class_exists('ZIPArchive')) { throw new Exception( 'Zip extension is not available'); } $this->path = $path; } /** * save a file inside this package * @param string relative path within the package * @param string|resource file contents or open file handle */ function addFile($path, $fileOrStream) { if (is_resource($fileOrStream)) { $this->zip->addFromString($path, stream_get_contents($fileOrStream)); } else { $this->zip->addFromString($path, $fileOrStream); } } /** * Initialize the package creator */ function init() { $this->zip = new ZipArchive; if (true !== $this->zip->open($this->path, ZIPARCHIVE::CREATE)) { throw new Exception( 'Cannot open ZIP archive ' . $this->path ); } } /** * Create an internal directory, creating parent directories as needed * * This is a no-op for the tar creator * @param string $dir */ function mkdir($dir) { $this->zip->addEmptyDir($dir); } /** * Finish saving the package */ function close() { $this->zip->close(); } }