mirror of
https://github.com/php/php-src.git
synced 2025-01-10 04:54:47 +08:00
15 lines
285 B
Plaintext
15 lines
285 B
Plaintext
|
--TEST--
|
||
|
Phar::mapPhar manifest too big
|
||
|
--SKIPIF--
|
||
|
<?php if (!extension_loaded("phar")) die("skip");?>
|
||
|
--FILE--
|
||
|
<?php
|
||
|
try {
|
||
|
Phar::mapPhar('hio');
|
||
|
} catch (Exception $e) {
|
||
|
echo $e->getMessage();
|
||
|
}
|
||
|
__HALT_COMPILER(); ?>~~~~
|
||
|
--EXPECTF--
|
||
|
manifest cannot be larger than 100 MB in phar "%s"
|