summaryrefslogtreecommitdiff
path: root/ext/phar/tests/files/frontcontroller.phar.inc
diff options
context:
space:
mode:
Diffstat (limited to 'ext/phar/tests/files/frontcontroller.phar.inc')
-rw-r--r--ext/phar/tests/files/frontcontroller.phar.inc13
1 files changed, 13 insertions, 0 deletions
diff --git a/ext/phar/tests/files/frontcontroller.phar.inc b/ext/phar/tests/files/frontcontroller.phar.inc
new file mode 100644
index 0000000000..80d42e886b
--- /dev/null
+++ b/ext/phar/tests/files/frontcontroller.phar.inc
@@ -0,0 +1,13 @@
+<?php
+@unlink(dirname(__FILE__) . '/frontcontroller.phar');
+$a = new Phar(dirname(__FILE__) . '/frontcontroller.phar');
+$a['a.php'] = 'hio';
+$a['a.jpg'] = 'hio';
+$a['a.phps'] = '<?php function hio(){}';
+$a['index.php'] = 'here is my index';
+$a->setStub('<?php
+Phar::webPhar();
+echo "oops did not run\n";
+var_dump($_ENV, $_SERVER);
+__HALT_COMPILER();');
+?>