blob: 28ce8427f3495fcaa180263c01f095393aa02320 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
<?php
@unlink(__DIR__ . '/stuboflength1041.phar');
$phar = new Phar('./stuboflength1041.phar');
$phar['a.php'] = 'hi1';
$phar['b.php'] = 'hi2';
$phar->setStub('<?php
/***stub of length 1041 including the halt compiler*********************************************
************************************************************************************************
************************************************************************************************
************************************************************************************************
************************************************************************************************
************************************************************************************************
************************************************************************************************
************************************************************************************************
************************************************************************************************
************************************************************************************************
*********************************************/
__HALT_COMPILER();');
|