mirror of
https://github.com/php/php-src.git
synced 2026-04-24 08:28:26 +02:00
f08aea109b
- stub and creation file updates - far too many test updates to think about
9 lines
172 B
PHP
9 lines
172 B
PHP
<?php
|
|
include dirname(__FILE__) . '/tarmaker.php.inc';
|
|
class corrupter extends tarmaker {
|
|
function close()
|
|
{
|
|
fwrite($this->tmp, (binary)'oopsie');
|
|
fclose($this->tmp);
|
|
}
|
|
} |