diff --git a/application/core/MY_Output-页面改造版本.php b/application/core/MY_Output-页面改造版本.php
new file mode 100644
index 00000000..cb244954
--- /dev/null
+++ b/application/core/MY_Output-页面改造版本.php
@@ -0,0 +1,392 @@
+create_folder_by_path(dirname($cache_path));
+
+ //如果文件存在,先判断是否为缓存文件,防止覆盖原始程序文件
+ if (@file_exists($cache_path) && filesize($cache_path) > 0) {
+ if (!$fp_read = @fopen($cache_path, FOPEN_READ)) {
+ return FALSE;
+ }
+
+ flock($fp_read, LOCK_SH);
+
+ $cache = fread($fp_read, filesize($cache_path));
+
+ flock($fp_read, LOCK_UN);
+ fclose($fp_read);
+ if (strpos($cache, '
+