mirror of
https://github.com/php/php-src.git
synced 2025-08-19 08:49:28 +02:00
7 lines
245 B
PHP
7 lines
245 B
PHP
<?php
|
|
include dirname(__FILE__) . '/corrupt_zipmaker.php.inc';
|
|
$a = new corrupt_zipmaker;
|
|
$a->addFile('hi', null, 'hii');
|
|
$a->addFile('hi2', null, 'hii2', null, null, 'encrypt', 'encrypt');
|
|
$a->writeZip(dirname(__FILE__) . '/encrypted.zip');
|
|
?>
|