summaryrefslogtreecommitdiff
path: root/ext/phar/tests/cache_list/files/write8.phar.inc
diff options
context:
space:
mode:
Diffstat (limited to 'ext/phar/tests/cache_list/files/write8.phar.inc')
-rw-r--r--ext/phar/tests/cache_list/files/write8.phar.inc18
1 files changed, 18 insertions, 0 deletions
diff --git a/ext/phar/tests/cache_list/files/write8.phar.inc b/ext/phar/tests/cache_list/files/write8.phar.inc
new file mode 100644
index 0000000..2b733a7
--- /dev/null
+++ b/ext/phar/tests/cache_list/files/write8.phar.inc
@@ -0,0 +1,18 @@
+<?php
+
+$fname = dirname(__FILE__) . '/write8.phar';
+@unlink($fname);
+
+$phar = new Phar($fname);
+$phar->setStub('<?php
+$p = new Phar(__FILE__);
+var_dump($p->getAlias());
+$p2 = new Phar(__FILE__);
+$p->setAlias("hi");
+echo $p2->getAlias(),"\n";
+echo "ok\n";
+__HALT_COMPILER();
+?>');
+$phar['test.txt'] = "hi
+";
+?>