update : 2015.11.03
php.shukuma.com검색:
|
Phar::setStub(PHP >= 5.3.0, PECL phar >= 1.0.0) Phar::setStub — Used to set the PHP loader or bootstrap stub of a Phar archive 설명
public bool Phar::setStub
( string
$stub
[, int $len = -1
] )
This method is used to add a PHP bootstrap loader stub to a new Phar archive, or to replace the loader stub in an existing Phar archive. The loader stub for a Phar archive is used whenever an archive is included directly as in this example:
<?php The loader is not accessed when including a file through the phar stream wrapper like so:
<?php 인수
반환값
성공 시 오류/예외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::setStub() example
<?php 위 예제의 출력: string(5) "Hello" string(82) "<?php var_dump("First"); Phar::mapPhar("brandnewphar.phar"); __HALT_COMPILER(); ?>" string(5) "World" string(83) "<?php var_dump("Second"); Phar::mapPhar("brandnewphar.phar"); __HALT_COMPILER(); ?>" 변경점
참고
|