Phar::setDefaultStub
(Unknown)
Phar::setDefaultStub — Used to set the PHP loader or bootstrap stub of a Phar archive to the default loader
설명
Note:
이 메쏘드가 Phar 객체에 작용하려면 php.ini 설정 phar.readonly을 0으로 설정해야 합니다. 그렇지 않으면, PharException이 발생합니다.
This method is a convenience method that combines the functionality of Phar::createDefaultStub() and Phar::setStub().
인수
- index
-
Relative path within the phar archive to run if accessed on the command-line
- webindex
-
Relative path within the phar archive to run if accessed through a web browser
반환값
성공할 경우 TRUE를, 실패할 경우 FALSE를 반환합니다.
오류/예외
UnexpectedValueException is thrown if phar.readonly is enabled in php.ini. PharException is thrown if any problems are encountered flushing changes to disk.
예제
Example #1 A Phar::setDefaultStub() example
<?php
try {
$phar = new Phar('myphar.phar');
$phar->setDefaultStub('cli.php', 'web/index.php');
// this is the same as:
// $phar->setStub($phar->createDefaultStub('cli.php', 'web/index.php'));
} catch (Exception $e) {
// handle errors
}
?>
참고
- Phar::setStub() - Used to set the PHP loader or bootstrap stub of a Phar archive
- Phar::createDefaultStub() - Create a phar-file format specific stub
