--TEST-- Phar::setAlias() error zip-based --SKIPIF-- --INI-- phar.require_hash=0 phar.readonly=0 --FILE-- init(); $a->addFile('.phar/stub.php', ''); $files = array(); $files['a'] = 'a'; $files['b'] = 'b'; $files['c'] = 'c'; $files['.phar/alias.txt'] = 'hio'; foreach ($files as $n => $file) { $a->addFile($n, $file); } $a->close(); $phar = new Phar($fname); echo $phar->getAlias() . "\n"; $phar->setAlias('test'); echo $phar->getAlias() . "\n"; $phar = new Phar(dirname(__FILE__) . '/notphar.phar'); try { $phar->setAlias('test'); } catch (Exception $e) { echo $e->getMessage() . "\n"; } ?> ===DONE=== --CLEAN-- --EXPECTF-- hio test alias "test" is already used for archive "%sphar_setalias2.phar.php" and cannot be used for other archives ===DONE===