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