mirror of
https://github.com/php/php-src.git
synced 2025-01-09 12:34:14 +08:00
15 lines
333 B
PHP
15 lines
333 B
PHP
--TEST--
|
|
Phar::mapPhar truncated manifest (manifest length truncated)
|
|
--SKIPIF--
|
|
<?php if (!extension_loaded("phar")) die("skip");?>
|
|
--FILE--
|
|
<?php
|
|
try {
|
|
Phar::mapPhar('hio');
|
|
} catch (Exception $e) {
|
|
echo $e->getMessage();
|
|
}
|
|
__HALT_COMPILER(); ?>
|
|
--EXPECTF--
|
|
internal corruption of phar "%s" (truncated manifest at manifest length)
|