1
0
mirror of https://github.com/php/php-src.git synced 2026-04-27 10:16:41 +02:00
Files
archived-php-src/ext/phar/tests/tar/files/make_invalid_tar.php.inc
T
2020-02-03 22:52:20 +01:00

10 lines
179 B
PHP

<?php
include dirname(__FILE__) . '/tarmaker.php.inc';
class corrupter extends tarmaker {
function close()
{
fwrite($this->tmp, (binary)'oopsie');
fclose($this->tmp);
}
}