1--TEST-- 2Phar: fopen a .phar for writing (existing file) 3--SKIPIF-- 4<?php 5if (!extension_loaded("phar")) die("skip"); 6?> 7--INI-- 8phar.readonly=1 9phar.require_hash=0 10--FILE-- 11<?php 12$fname = __DIR__ . '/' . basename(__FILE__, '.php') . '.phar.php'; 13$pname = 'phar://' . $fname; 14$file = "<?php __HALT_COMPILER(); ?>"; 15 16$files = array(); 17$files['a.php'] = '<?php echo "This is a\n"; ?>'; 18$files['b.php'] = '<?php echo "This is b\n"; ?>'; 19$files['b/c.php'] = '<?php echo "This is b/c\n"; ?>'; 20include 'files/phar_test.inc'; 21 22var_dump(fopen($pname . '/b/c.php', 'wb')); 23include $pname . '/b/c.php'; 24?> 25--CLEAN-- 26<?php unlink(__DIR__ . '/' . basename(__FILE__, '.clean.php') . '.phar.php'); ?> 27--EXPECTF-- 28Warning: fopen(phar://%sopen_for_write_existing_b.phar.php/b/c.php): Failed to open stream: phar error: write operations disabled by the php.ini setting phar.readonly in %sopen_for_write_existing_b.php on line %d 29bool(false) 30This is b/c 31