What is Phar file?

Phar file is a new format of libraries introduced in PHP 5.2.0.

It contains php source code from many files combined into one single archive.

This is not compiled opcode, so php interpreter still needs time to parse it during execution. Therewhy It gives no extra optimization.

Phar file can be easily unpacked/extracted or converted to zip.