Войти через VK Войти через FB Войти через Google Войти через Яндекс
Поиск по сайту
Phar::setAlias
(PHP >= 5.3.0, PECL phar >= 1.2.1)
Phar::setAlias — Set the alias for the Phar archive
Описание
public bool Phar::setAlias ( string $alias )Замечание:
Для корректной работы с объектами Phar этому методу необходима установка значения php.ini phar.readonly в 0. В противном случае, будет выброшено исключение PharException.
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.
Список параметров
alias - A shorthand string that this archive can be referred to in phar stream wrapper access.
Возвращаемые значения
Ошибки
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.
Примеры
Пример #1 A Phar::setAlias() example
try {
$phar = new Phar('myphar.phar');
$phar->setAlias('myp.phar');
} catch (Exception $e) {
// handle error
}
Смотрите также
- Phar::__construct() - Construct a Phar archive object
- Phar::interceptFileFuncs() - instructs phar to intercept fopen, file_get_contents, opendir, and all of the stat-related functions
User Contributed Notes
There are no user contributed notes for this page.
Описание класса phar, примеры использования класса phar.
Описание на ru2.php.netОписание на php.ru