1--TEST--
2Phar: fopen a .phar for writing (new file) tar-based
3--EXTENSIONS--
4phar
5--INI--
6phar.readonly=0
7phar.require_hash=0
8--FILE--
9<?php
10
11$fname = __DIR__ . '/' . basename(__FILE__, '.php') . '.phar.tar';
12$alias = 'phar://' . $fname;
13
14$phar = new Phar($fname);
15$phar->setStub("<?php __HALT_COMPILER(); ?>");
16
17$files = array();
18
19$files['a.php'] = '<?php echo "This is a\n"; ?>';
20$files['b.php'] = '<?php echo "This is b\n"; ?>';
21$files['b/c.php'] = '<?php echo "This is b/c\n"; ?>';
22
23foreach ($files as $n => $file) {
24    $phar[$n] = $file;
25}
26
27$phar->stopBuffering();
28ini_set('phar.readonly', 1);
29
30var_dump(fopen($alias . '/b/new.php', 'wb'));
31
32include $alias . '/b/c.php';
33include $alias . '/b/new.php';
34
35?>
36
37--CLEAN--
38<?php unlink(__DIR__ . '/' . basename(__FILE__, '.clean.php') . '.phar.tar'); ?>
39--EXPECTF--
40Warning: fopen(phar://%sopen_for_write_newfile_b.phar.tar/b/new.php): Failed to open stream: phar error: write operations disabled by the php.ini setting phar.readonly in %sopen_for_write_newfile_b.php on line %d
41bool(false)
42This is b/c
43
44Warning: include(phar://%sopen_for_write_newfile_b.phar.tar/b/new.php): Failed to open stream: phar error: "b/new.php" is not a file in phar "%sopen_for_write_newfile_b.phar.tar" in %sopen_for_write_newfile_b.php on line %d
45
46Warning: include(): Failed opening 'phar://%sopen_for_write_newfile_b.phar.tar/b/new.php' for inclusion (include_path='%s') in %sopen_for_write_newfile_b.php on line %d
47
48