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

search for in the

Phar::setMetadata> <Phar::setAlias
[edit] Last updated: Sat, 07 Jan 2012

view this page in

Phar::setDefaultStub

(Unknown)

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

설명

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 Phar::setDefaultStub
There are no user contributed notes for this page.

 
show source | credits | stats | sitemap | contact | advertising | mirror sites