(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().
Relative path within the phar archive to run if accessed on the command-line
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
}
?>