PHP merge static files _ php instance-php Tutorial

Source: Internet
Author: User
This article describes in detail the configuration and complete code required for php to merge static files, as well as instructions for use. it is very detailed. we recommend that you configure PHP. ini for your friends.

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

The 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

The code is as follows:


"A. js? 1.1.29 "," B. js? 1.1.29 "and" ../c. js? 1.1.29 "is the JS file to be merged and merged into base. js. php. the code in base. js. 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

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.