1
0
mirror of https://github.com/php/php-src.git synced 2026-03-26 09:12:14 +01:00
Files
archived-php-src/ext/phar/tests/032.phpt
Nikita Popov 7485978339 Migrate SKIPIF -> EXTENSIONS (#7138)
This is an automated migration of most SKIPIF extension_loaded checks.
2021-06-11 11:57:42 +02:00

29 lines
394 B
PHP

--TEST--
Phar: require hash
--EXTENSIONS--
phar
--INI--
phar.require_hash=1
--FILE--
<?php
$pharconfig = 0;
require_once 'files/phar_oo_test.inc';
try {
Phar::loadPhar($fname);
} catch (Exception $e) {
echo $e->getMessage();
}
?>
===DONE===
--CLEAN--
<?php
unlink(__DIR__ . '/files/032.phar.php');
__halt_compiler();
?>
--EXPECTF--
phar "%s032.phar.php" does not have a signature===DONE===