blob: 931fa975e17ae11e45b60006db241b62966273fc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
<?php
@unlink(dirname(__FILE__) . '/frontcontroller5.phar.zip');
$a = new Phar(dirname(__FILE__) . '/frontcontroller5.phar.zip');
$a['a.php'] = 'hio';
$a['a.jpg'] = 'hio';
$a['a.phps'] = '<?php function hio(){}';
$a->setStub('<?php
Phar::webPhar("whatever", "index.php", null, array(0 => "oops"));
echo "oops did not run\n";
var_dump($_ENV, $_SERVER);
__HALT_COMPILER();');
?>
|