Advantages of PHAR archives in PHP

前端 未结 5 707
[愿得一人]
[愿得一人] 2021-02-04 08:00

PHP 5.3 has a new feature called PHAR similar to JAR in JAVA. It\'s basically a archive of PHP files. What are its advantages

5条回答
  •  予麋鹿
    予麋鹿 (楼主)
    2021-02-04 08:14

    Any tool that works on a single file "suddenly" works with all files of an application at once.
    E.g. transport: You can upload the entire application through a single input/file element without additional steps.
    E.g. signing an application: checksum/sign the file -> checksum/signature for the whole application.
    ...

提交回复
热议问题