Phar::setDefaultStub

(Unknown)

Phar::setDefaultStubUsed to set the PHP loader or bootstrap stub of a Phar archive to the default loader

설명

public bool Phar::setDefaultStub ([ string $index [, string $webindex ]] )

Note:

이 메쏘드가 Phar 객체에 작용하려면 php.ini 설정 phar.readonly0으로 설정해야 합니다. 그렇지 않으면, 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
}
?>

참고

add a note add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top