php-src/ext/phar/tests/tar/files/make_invalid_tar.php.inc
Steph Fox f08aea109b - IS_UNICODE checks and conversions
- stub and creation file updates
- far too many test updates to think about
2008-05-19 19:05:42 +00:00

9 lines
No EOL
172 B
PHP

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