1--TEST-- 2Phar: corrupted zip (extra field way too long) 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/extralen_toolong.zip'); 10} catch (Exception $e) { 11 echo $e->getMessage() . "\n"; 12} 13?> 14===DONE=== 15--EXPECTF-- 16phar error: Unable to process extra field header for file in central directory in zip-based phar "%sextralen_toolong.zip" 17===DONE=== 18