配置PHP.ini
更改配置項(必須)auto_prepend_file = "C:\xampp\htdocs\auto_prepend_file.php"
更改配置項(可選)allow_url_include = On
auto_prepend_file.php文件內容
1. <?php
2. /**
3. * 引入static文件
4. * @param {array|string} 相對路徑
5. * @param {string} 當前執行腳本所在的路徑__FILE__
6. *
7. */
8. function import_static($files, $path=NULL){
9. // 更改當前腳本的執行路徑
10. $old_dir = getcwd();
11. $tmp_dir = (isset($path)) ? dirname($path): dirname(__FILE__);
12. chdir($tmp_dir);
13. // 整理包含文件
14. if (!is_array($files)) {
15. $tmp = array();
16. $tmp[] = $files;
17. $files = $tmp;
18. }
19. // 發送頭信息
20. if (isset($files[0])) {
21. if (stripos($files[0], '.js') !== false) {
22. $header_str = 'Content-Type: text/javascript';
23. } elseif (stripos($files[0], '.css') !== false) {
24. $header_str = 'Content-Type: text/css';
25. }
26. if (!ob_get_contents()) {
27. header($header_str);
28. }
29. }
30. // 引入包含文件 www.2cto.com
31. foreach($files as $key=>$value) {
32. require_once($value);
33. }
34. // 改回當前腳本的執行路徑
35. chdir($old_dir);
36. }
37. ?>
使用方法
"a.js"、"b.js"和"../c.js"是待合並的JS文件,將其合並為base.js.php,則base.js.php中的代碼如下:
1. <?php
2. import_static(array(
3. 'a.js',
4. 'b.js',
5. '../c.js',
6. '../moduleB/all.js.php' // 也可引用.php文件
7. ), __FILE__);
8. ?>
在HTML頁面中使用<script type="text/javascript" src="base.js.php"></script>即可引入。
產品上線前,使用批處理文件進行處理,主要做兩方面的工作
1. 將"*.js.php"輸出到"*.js"文件,並刪除"*.js.php"。命令行:php *.js.php > *.js
2. 將HTML頁面中對"*.js.php"的引用替換為"*.js"。preg_replace()
PS:import_static函數解決了PHP中include()處理相對路徑的問題。
待續。。。