1--TEST-- 2Phar: corrupted zip (central directory offset incorrect) 3--EXTENSIONS-- 4phar 5--FILE-- 6<?php 7try { 8 new PharData(__DIR__ . '/files/cdir_offset.zip'); 9} catch (Exception $e) { 10 echo $e->getMessage() . "\n"; 11} 12?> 13--EXPECTF-- 14phar error: corrupted central directory entry, no magic signature in zip-based phar "%scdir_offset.zip" 15