22 lines
464 B
PHP
22 lines
464 B
PHP
--TEST--
|
|
Phar::buildFromDirectory() - readonly
|
|
--EXTENSIONS--
|
|
phar
|
|
--INI--
|
|
phar.require_hash=0
|
|
phar.readonly=0
|
|
--FILE--
|
|
<?php
|
|
$phar = new Phar(__DIR__ . '/buildfromdirectory1.phar');
|
|
try {
|
|
ini_set('phar.readonly', 1);
|
|
$phar->buildFromDirectory(1);
|
|
} catch (Exception $e) {
|
|
var_dump(get_class($e));
|
|
echo $e->getMessage() . "\n";
|
|
}
|
|
?>
|
|
--EXPECTF--
|
|
%s(24) "UnexpectedValueException"
|
|
Cannot write to archive - write operations restricted by INI setting
|