--TEST-- Phar: fopen a .phar for writing (existing file) --SKIPIF-- --INI-- phar.readonly=0 phar.require_hash=0 --FILE-- "; $files = array(); $files['a.php'] = ''; $files['b.php'] = ''; $files['b/c.php'] = ''; include 'files/phar_test.inc'; $fp = fopen($pname . '/b/c.php', 'wb'); fwrite($fp, 'extra'); fclose($fp); include $pname . '/b/c.php'; ?> --CLEAN-- --EXPECT-- extra