Annotation of embedaddon/php/ext/phar/tests/tar/files/make_invalid_tar.php.inc, revision 1.1.1.1

1.1       misho       1: <?php
                      2: include dirname(__FILE__) . '/tarmaker.php.inc';
                      3: class corrupter extends tarmaker {
                      4: function close()
                      5: {
                      6:        fwrite($this->tmp, (binary)'oopsie');
                      7:        fclose($this->tmp);
                      8: }
                      9: }

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>