1--TEST-- 2Phar::mapPhar filesize mismatch 3--EXTENSIONS-- 4phar 5--INI-- 6phar.require_hash=0 7--FILE-- 8<?php 9$fname = __DIR__ . '/' . basename(__FILE__, '.php') . '.phar.php'; 10$pname = 'phar://' . $fname; 11$file = "<?php __HALT_COMPILER(); ?>"; 12// filesize should be 1, and is 2 13 14$files = array(); 15$files['a'] = array('cont'=>'a', 'ulen'=>2, 'clen'=>2); 16include 'files/phar_test.inc'; 17 18echo file_get_contents($pname.'/a'); 19?> 20--CLEAN-- 21<?php unlink(__DIR__ . '/' . basename(__FILE__, '.clean.php') . '.phar.php'); ?> 22--EXPECTF-- 23Warning: file_get_contents(phar://%s/a): Failed to open stream: phar error: internal corruption of phar "%s" (%s file "a") in %s on line %d 24