1--TEST-- 2Phar: corrupted zip (count mismatch) 3--SKIPIF-- 4<?php if (!extension_loaded("phar")) die("skip"); ?> 5<?php if (!extension_loaded("spl")) die("skip SPL not available"); ?> 6--FILE-- 7<?php 8try { 9 new PharData(dirname(__FILE__) . '/files/count1.zip'); 10} catch (Exception $e) { 11 echo $e->getMessage() . "\n"; 12} 13try { 14 new PharData(dirname(__FILE__) . '/files/count2.zip'); 15} catch (Exception $e) { 16 echo $e->getMessage() . "\n"; 17} 18?> 19===DONE=== 20--EXPECTF-- 21phar error: corrupt zip archive, conflicting file count in end of central directory record in zip-based phar "%scount1.zip" 22phar error: corrupt zip archive, conflicting file count in end of central directory record in zip-based phar "%scount2.zip" 23===DONE=== 24