--TEST-- Phar: fopen a .phar for writing (new file) tar-based --SKIPIF-- --INI-- phar.readonly=0 phar.require_hash=0 --FILE-- setStub(""); $files = array(); $files['a.php'] = ''; $files['b.php'] = ''; $files['b/c.php'] = ''; foreach ($files as $n => $file) { $phar[$n] = $file; } $phar->stopBuffering(); $fp = fopen($alias . '/b/new.php', 'wb'); fwrite($fp, 'extra'); fclose($fp); include $alias . '/b/c.php'; include $alias . '/b/new.php'; ?> ===DONE=== --CLEAN-- --EXPECT-- This is b/c extra ===DONE===