PHP Doku:: Create a phar-file format specific stub - phar.createdefaultstub.html
Aktuelle Suchanfrage: c0d23d2d6769e53e24a1b3136c064577-importimagepixels jpg - 5 Treffer
  1 Imagick::labelImage
Adds a label to an image - function.imagick-labelimage.html
  2 Imagick::importImagePixels
Imports image pixels - imagick.importimagepixels.html
  3 Imagick::implodeImage
Creates a new image as a copy - function.imagick-implodeimage.html
  4 The Imagick class
The Imagick class - class.imagick.html
  5 Image Processing (ImageMagick)
Image Processing (ImageMagick) - book.imagick.html

Bisherige Suchanfragen: (1) anzeigen

Verlauf / Chronik / History: (6) anzeigen

Sie sind hier:
Doku-StartseitePHP-HandbuchFunktionsreferenzErweiterungen zur Datenkompression und ArchivierungPharThe Phar classPhar::createDefaultStub

Ein Service von Reinhard Neidl - Webprogrammierung.

The Phar class

<<Phar::count

Phar::decompress>>

Phar::createDefaultStub

(Unknown)

Phar::createDefaultStubCreate a phar-file format specific stub

Beschreibung

string Phar::createDefaultStub ([ string $indexfile [, string $webindexfile ]] )

This method is intended for creation of phar-file format-specific stubs, and is not intended for use with tar- or zip-based phar archives.

Phar archives contain a bootstrap loader, or stub written in PHP that is executed when the archive is executed in PHP either via include:

<?php
include 'myphar.phar';
?>
or by simple execution:
php myphar.phar
    

This method provides a simple and easy method to create a stub that will run a startup file from the phar archive. In addition, different files can be specified for running the phar archive from the command line versus through a web server. The loader stub also calls Phar::interceptFileFuncs() to allow easy bundling of a PHP application that accesses the file system. If the phar extension is not present, the loader stub will extract the phar archive to a temporary directory and then operate on the files. A shutdown function erases the temporary files on exit.

Rückgabewerte

Returns a string containing the contents of a customized bootstrap loader (stub) that allows the created Phar archive to work with or without the Phar extension enabled.

Fehler/Exceptions

Throws UnexpectedValueException if either parameter is longer than 400 bytes.

Beispiele

Beispiel #1 A Phar::createDefaultStub() example

<?php
try {
    
$phar = new Phar('myphar.phar');
    
$phar->setStub($phar->createDefaultStub('cli.php''web/index.php'));
} catch (
Exception $e) {
    
// handle errors
}
?>

Siehe auch

  • Phar::setStub() - Used to set the PHP loader or bootstrap stub of a Phar archive
  • Phar::getStub() - Return the PHP loader or bootstrap stub of a Phar archive


Keine BenutzerBeiträge.
- Beiträge aktualisieren...



PHP Powered Diese Seite bei php.net
The PHP manual text and comments are covered by the Creative Commons Attribution 3.0 License © the PHP Documentation Group - Impressum - mail("TO:Reinhard Neidl",...)