mirror of
https://github.com/php/php-src.git
synced 2026-04-27 10:16:41 +02:00
10 lines
179 B
PHP
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);
|
|
}
|
|
}
|