PHP merge static files,
Configure PHP. ini
Change configuration item (required) auto_prepend_file = "C: \ xampp \ htdocs \ auto_prepend_file.php"
Change configuration item (optional) allow_url_include = On
Auto_prepend_file.php File Content
Copy codeThe Code is as follows:
<? Php
/**
* Introduce static files
* @ Param {array | string} relative path
* @ Param {string} path of the currently executed script _ FILE __
*
*/
Function import_static ($ files, $ path = NULL ){
// Change the execution path of the current script
$ Old_dir = getcwd ();
$ Tmp_dir = (isset ($ path ))? Dirname ($ path): dirname (_ FILE __);
Chdir ($ tmp_dir );
// Organize included files
If (! Is_array ($ files )){
$ Tmp = array ();
$ Tmp [] = $ files;
$ Files = $ tmp;
}
// Sending header information
If (isset ($ files [0]) {
If (stripos ($ files [0], '. js ')! = False ){
$ Header_str = 'content-Type: text/javascript ';
} Elseif (stripos ($ files [0], '.css ')! = False ){
$ Header_str = 'content-Type: text/css ';
}
If (! Ob_get_contents ()){
Header ($ header_str );
}
}
// Introduce the inclusion File
Foreach ($ files as $ key => $ value ){
Require_once ($ value );
}
// Change the execution path of the current script
Chdir ($ old_dir );
}
?>
Usage
Copy codeThe Code is as follows:
". Js "," B. js "and ".. /c. js "is the JS file to be merged and merged into base. js. php, then base. js. the code in php is as follows:
<? Php
Import_static (array (
'A. js ',
'B. js ',
'../C. js ',
'../ModuleB/all. js. php' // You can also reference the. php file.
), _ FILE __);
?>
Use <script type = "text/javascript" src = "base. js. php"> </script> On the HTML page to introduce it.
Before the product is launched, batch files are used for processing.
1. Output "*. js. php" to the "*. js" file and delete "*. js. php ". Command Line: php *. js. php> *. js
2. Replace the reference to "*. js. php" on the HTML page with "*. js ". Preg_replace ()
PS: The import_static function solves the issue of include () Processing relative paths in PHP.
The above is all the content of this article. For more details, please look forward to subsequent articles.