mirror of
https://github.com/php/php-src.git
synced 2025-08-20 01:14:28 +02:00
9 lines
No EOL
164 B
PHP
9 lines
No EOL
164 B
PHP
<?php
|
|
include dirname(__FILE__) . '/tarmaker.php.inc';
|
|
class corrupter extends tarmaker {
|
|
function close()
|
|
{
|
|
fwrite($this->tmp, 'oopsie');
|
|
fclose($this->tmp);
|
|
}
|
|
} |