YUI Compressor在线压缩(Javascript/Css)
程序员文章站
2022-05-24 12:45:48
...
demo地址:http://www.atool.org/yui.php 支持YUICompressor的所有功能和指令,支持Javascript/Css的在线压缩、混淆和合并文件,从而减少网站网络请求和连接数量。 支持多文件的压缩合并,但是请注意合并的文件属于同一种类型,js或css,不可混淆使用。 YUI
demo地址:http://www.atool.org/yui.php
支持YUI Compressor的所有功能和指令,支持Javascript/Css的在线压缩、混淆和合并文件,从而减少网站网络请求和连接数量。
支持多文件的压缩合并,但是请注意合并的文件属于同一种类型,js或css,不可混淆使用。
YUI Compressor
function compress() { // read the input foreach ($this->files as $file) { $this->string .= file_get_contents($file) or die("Cannot read from uploaded file"); } // create single file from all input $input_hash = sha1($this->string); $file = $this->TEMP_FILES_DIR . '/' . $input_hash . '.txt'; $fh = fopen($file, 'w') or die("Can't create new file"); fwrite($fh, $this->string); fclose($fh); // start with basic command $cmd = "java -Xmx32m -jar " . escapeshellarg($this->JAR_PATH) . ' ' . escapeshellarg($file) . " --charset UTF-8"; // set the file type $cmd .= " --type " . (strtolower($this->options['type']) == "css" ? "css" : "js"); // and add options as needed if ($this->options['linebreak'] && intval($this->options['linebreak']) > 0) { $cmd .= ' --line-break ' . intval($this->options['linebreak']); } if ($this->options['verbose']) { $cmd .= " -v"; } if ($this->options['nomunge']) { $cmd .= ' --nomunge'; } if ($this->options['semi']) { $cmd .= ' --preserve-semi'; } if ($this->options['nooptimize']) { $cmd .= ' --disable-optimizations'; } // execute the command exec($cmd . ' 2>&1', $raw_output); // add line breaks to show errors in an intelligible manner $flattened_output = implode("\n", $raw_output); // clean up (remove temp file) unlink($file); // return compressed output return $flattened_output; }
推荐阅读
-
YUI Compressor使用配置方法 JS/CSS压缩工具
-
css js 图片压缩批处理命令(基于YUI Compressor)
-
使用YUI+Ant 实现JS CSS压缩
-
使用YUI+Ant 实现JS CSS压缩_PHP
-
javascript - 关于minify压缩CSS/JS中我遇到的问题,求解
-
js 实现css风格选择器(压缩后2KB)_javascript技巧
-
使用YUI+Ant 实现JS CSS压缩_PHP
-
javascript - CDN上如何 解决实现 JS/CSS自动压缩方案?(通过 JSMinify)
-
YUI Compressor压缩JavaScript原理及微优化_javascript技巧
-
YUI Compressor在线压缩(Javascript/Css)