PHP
downloads | documentation | faq | getting help | mailing lists | reporting bugs | php.net sites | links | conferences | my php.net

search for in the

Phar::setDefaultStub> <Phar::running
Last updated: Fri, 22 Aug 2008

view this page in

Phar::setAlias

(PECL phar:1.2.1)

Phar::setAliasSet the alias for the Phar archive

Opis

bool Phar::setAlias ( string $alias )

Informacja: Ta metoda wymaga ustawienia w php.ini wartości phar.readonly na 0 aby działała z obiektami Phar. W przeciwnym przypadku, klasa PharException zwróci wyjątek .

Set the alias for the Phar archive, and write it as the permanent alias for this phar archive. An alias can be used internally to a phar archive to ensure that use of the phar stream wrapper to access internal files always works regardless of the location of the phar archive on the filesystem. Another alternative is to rely upon Phar's interception of include() or to use Phar::interceptFileFuncs() and use relative paths.

Parametry

alias

A shorthand string that this archive can be referred to in phar stream wrapper access.

Zwracane wartości

Błędy/Wyjątki

Throws UnexpectedValueException when write access is disabled, and PharException if the alias is already in use or any problems were encountered flushing changes to disk.

Przykłady

Example #1 A Phar::setAlias() example

<?php
try {
    
$phar = new Phar('myphar.phar');
    
$phar->setAlias('myp.phar');
} catch (
Exception $e) {
    
// handle error
}
?>



add a note add a note User Contributed Notes
Phar::setAlias
There are no user contributed notes for this page.

Phar::setDefaultStub> <Phar::running
Last updated: Fri, 22 Aug 2008
 
 
show source | credits | sitemap | contact | advertising | mirror sites