PHP phar package use tutorial, phpphar use tutorial

Source: Internet
Author: User

PHP phar package use tutorial, phpphar use tutorial

Preface

PHP5.3 and later support a jar package similar to Java named phar. It is used to Package Multiple PHP files into one file.

First, modify the php. ini configuration to disable phar readonly. By default, phar packages cannot be written, and include is enabled by default.

phar.readonly => On

Create a phar compressed package

<?php$phar = new Phar('swoole.phar');$phar->buildFromDirectory(__DIR__.'/../', '/\.php$/');$phar->compressFiles(Phar::GZ);$phar->stopBuffering();$phar->setStub($phar->createDefaultStub('lib_config.php'));

new PharIs the name of the compressed package. BuildFromDirectory specifies the compressed directory. The second parameter can be used to specify the extension of the compressed file through regular expressions.

Phar::GZIndicates that gzip is used to compress the file. Bz2 compression is also supported. Modify the parameterPHAR::BZ2You can.

SetSub is used to set the file to start loading. Lib_config.php is automatically loaded and executed by default.

After this code is executed, a swoole. phar file is generated.

Use phar compressed package

<?phpinclude 'swoole.phar';include 'swoole.phar/code/page.php';

With phar, you can easily package your code and integrate and deploy it to online machines.

Summary

The above is all the content of this article. I hope the content of this article will help you in your study or work. If you have any questions, please leave a message, thank you for your support.

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.