1--TEST-- 2Phar: unable to process zip (zip spanning multiple archives) 3--EXTENSIONS-- 4phar 5--FILE-- 6<?php 7try { 8 new PharData(__DIR__ . '/files/disknumber.zip'); 9} catch (Exception $e) { 10 echo $e->getMessage() . "\n"; 11} 12?> 13--EXPECTF-- 14phar error: split archives spanning multiple zips cannot be processed in zip-based phar "%sdisknumber.zip" 15