diff options
Diffstat (limited to 'ext/phar/tests/cache_list/files/write18.phar.inc')
-rw-r--r-- | ext/phar/tests/cache_list/files/write18.phar.inc | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/ext/phar/tests/cache_list/files/write18.phar.inc b/ext/phar/tests/cache_list/files/write18.phar.inc new file mode 100644 index 0000000..fca867d --- /dev/null +++ b/ext/phar/tests/cache_list/files/write18.phar.inc @@ -0,0 +1,17 @@ +<?php + +$fname = dirname(__FILE__) . '/write18.phar'; +@unlink($fname); + +$phar = new Phar($fname); +$phar->setStub('<?php +$p = new Phar(__FILE__); +echo decoct(fileperms("phar://" . __FILE__ . "/test.txt")),"\n"; +$p["test.txt"]->chmod(0444); +echo decoct(fileperms("phar://" . __FILE__ . "/test.txt")),"\n"; +echo "ok\n"; +__HALT_COMPILER(); +?>'); +$phar['test.txt'] = "<?php __HALT"."_COMPILER();"; +$phar["test.txt"]->chmod(0666); +?> |