php源代码压缩,PHP_PHP 源代码压缩小工具,使用方法:(在命令行运行) 复 - phpStudy...
PHP 源代碼壓縮小工具
使用方法:(在命令行運(yùn)行)
復(fù)制代碼 代碼如下:
php compactor.php DESTINATION.php SOURCE.php
下載: compactor.php
復(fù)制代碼 代碼如下:
#!/usr/bin/env php
/**
* Compact PHP code.
*
* Strip comments, combine entire library into one file.
*/
if ($argc < 3) {
print "Strip unecessary data from PHP source files.\n\n\tUsage: php compactor.php DESTINATION.php SOURCE.php";
exit;
}
$source = $argv[2];
$target = $argv[1];
print "Compacting $source into $target.\n";
include $source;
$files = get_included_files();
print_r($files);
$out = fopen($target, 'w');
fwrite($out, '<?php ' . PHP_EOL);
fwrite($out, '// QueryPath. Copyright (c) 2009, Matt Butcher.' . PHP_EOL);
fwrite($out, '// This software is released under the LGPL, v. 2.1 or an MIT-style license.' . PHP_EOL);
fwrite($out ,'// http://opensource.org/licenses/lgpl-2.1.php');
fwrite($out, '// http://querypath.org.' . PHP_EOL);
foreach ($files as $f) {
if ($f !== __FILE__) {
$contents = file_get_contents($f);
foreach (token_get_all($contents) as $token) {
if (is_string($token)) {
fwrite($out, $token);
}
else {
switch ($token[0]) {
case T_REQUIRE:
case T_REQUIRE_ONCE:
case T_INCLUDE_ONCE:
// We leave T_INCLUDE since it is rarely used to include
// libraries and often used to include HTML/template files.
case T_COMMENT:
case T_DOC_COMMENT:
case T_OPEN_TAG:
case T_CLOSE_TAG:
break;
case T_WHITESPACE:
fwrite($out, ' ');
break;
default:
fwrite($out, $token[1]);
}
}
}
}
}
fclose($out);
?>相關(guān)閱讀:
csdn 博客的css樣式 v3
使用JS判斷是否數(shù)字和小數(shù)點組合的數(shù)字的兩中方法比較(isNaN和逐判斷)
如何將自己的代碼自動添加版權(quán)信息
win2003安裝sqlserver 2000提示無法驗證產(chǎn)品密鑰的解決方法
對IIS中的虛擬目錄進(jìn)行操作
HTML表格標(biāo)記教程(6):暗邊框色屬性BORDERCOLORDARK
Adobe發(fā)布Photoshop Lightroom 2正式版
關(guān)于javascript判斷文件大小
PHP中在數(shù)據(jù)庫中保存Checkbox數(shù)據(jù)(2)
用ASP編寫的加密和解密類
如何讓position:fixed在IE6中工作
Javascript表單應(yīng)用的對象
C#編碼好習(xí)慣小結(jié)
最新linux版MSN客戶端Emesene 1.0.1發(fā)布下載
總結(jié)
以上是生活随笔為你收集整理的php源代码压缩,PHP_PHP 源代码压缩小工具,使用方法:(在命令行运行) 复 - phpStudy...的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: php xml 增删改查,PHP实现对x
- 下一篇: php drive mssql,PHP