<! DOCTYPE html>
index.php content is as follows:
<?php/** * Created by Yunke. * User:yunke * DATE:2017/2/10 * time:9:17 */require "lib/lib_a.php"; show (); $str = Isset ($_get["str"])? $_get["str"]: "Hello World"; include "template/msg.html";
lib.php content is as follows:
<?php/** * Created by Yunke. * User:yunke * DATE:2017/2/10 * time:9:20 */function Yunke () { echo "L am Yunke ()";}
The project file is ready, start creating, and now create a yunkebuild.php in the project folder sibling directory to produce the Phar format file, as follows:
<?php/** * Created by Yunke. * User:yunke * DATE:2017/2/10 * time:9:36 *///generate a Yunke.phar file $phar = new Phar (' Yunke.phar ', 0, ' Yunke.phar ');//Add Proj All files inside the ECT to the Yunke.phar archive file $phar->buildfromdirectory (dirname (file). '/project ');//Set the execution of the entry file, the first for the command line, the second for the browser access, here are set to Index.php$phar->setdefaultstub (' index.php ', ' index.php ');
The yunkebuild.php file is then accessed in the browser and a Yunke.phar file is generated, and the server root directory is structured as follows:
ProjectyunkeBuild.phpyunke.phar
This is the simplest process to produce a Phar Archive, more content please crossing network, it is important to note that if the project does not have a single execution portal, it is not appropriate to use the Phar Archive file
Use of Phar Archive files:
We set up a index.php file at the root of the server to demonstrate how to use the Phar file created above, as follows:
<?php/** * Created by Yunke. * User:yunke * DATE:2017/2/8 * time:9:33 */require "Yunke.phar"; require "phar://yunke.phar/lib.php"; Yunke ();
If there is only the first line in the index.php file, then the following code is exactly the same when you do not use the archive file:
Require "project/index.php";
If there is no second row, then the third row of Yunke () will prompt undefined, so it is visible that require a Phar file is not imported all the files inside, but only imported the import execution file, but in the actual project in this portal file is often imported to use other files, In this example, the Portal execution file is project/index.php
Extract and restore Phar Files:
We sometimes curious Phar contains the file source code, this time you need to restore the Phar file, if you just look at the words can use some IDE tools, such as Phpstorm 10 can open it directly, if need to modify then need to extract operation, in order to demonstrate, We download a Composer.phar in the server directory, create a get.php file in the root directory, the contents are as follows:
<?php/** * Created by Yunke. * User:yunke * DATE:2017/2/9 * time:19:02 * * $phar = new Phar (' Composer.phar '); $phar->extractto (' composer '); Extract a copy of the original project document $phar->converttodata (Phar::zip); Another one, and the upstream two select one can
The browser to access this file, can be extracted, to show the following two methods of extraction: the second will establish a composer directory, and the extracted content into the third row to produce a composer.zip file, extract and restore the project files.
Add:
1, in the deployment of Phar files to the production server needs to adjust the configuration of the server, to avoid when access to the browser directly download Phar Files
2, you can set an alias for the archive, the alias is saved in the archive permanently saved, it can be archived with a short name reference, regardless of the archive file in the file system stored there, set aliases:
$phar = new Phar (' Lib/yunke.phar ', 0); $phar->setalias ("Yun.phar");
After setting the alias, you can use the following:
<?phprequire "Lib/yunke.phar"; require "phar://yun.phar/lib.php"; Use aliases to access archive files require "phar://lib/yunke.phar/lib.php"; Of course, you can still use this way to quote
If you do not specify an alias when making a Phar file, you can also use Phar::mapphar (' Yunke.phar ') in the stub file;
3, the archive file has a stub file, in fact, is a piece of PHP execution code, in the production of the archive can be set, the direct execution of the archive, is actually executed it, so it is a startup file, the script contains the archive as if it contains a normal PHP file, including it and run, but directly to phar:// Method contains a file in the archive does not execute stub code, often in the stub file require contains the other files to be run, the stub file is limited to Halt_compiler (), end, the default stub is designed to run without Phar extension, It extracts the contents of the Phar file to a temporary directory and executes it, but starting from php5.3 the extension is enabled by default built-in
4, the production of Phar files can not be changed, so the configuration files and other files need to be placed outside the archive file
5, Mapphar function: This function should only be called in stub stub code, can be used to set the alias when the archive alias is not set, open a reference map to the Phar Stream
Believe that you have seen these cases you have mastered the method, more wonderful please pay attention to the PHP Chinese network other related articles!
Related reading:
How PHP solves large traffic and high concurrency
Ajax principle and the method of Cors cross-domain
JavaScript data types and git use code explained