Created
January 27, 2011 10:54
-
-
Save tomaskavalek/798351 to your computer and use it in GitHub Desktop.
NShrink and NFinder in action - "draft"
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html><link rel="stylesheet" href="files/style.css"> | |
<h1>NShrink and NFinder in action</h1> | |
<pre> | |
<?php | |
// Temporarily solution | |
require dirname(__FILE__) . '/Finder.php52.php'; | |
// PHP 4 & 5 compatibility | |
if (!defined('T_DOC_COMMENT')) | |
define ('T_DOC_COMMENT', -1); | |
if (!defined('T_ML_COMMENT')) | |
define ('T_ML_COMMENT', -1); | |
function shrink($filename) { | |
// read input file | |
$input = file_get_contents($filename); | |
$space = $output = ''; | |
$set = '!"#$&\'()*+,-./:;<=>?@[\]^`{|}'; | |
$set = array_flip(preg_split('//',$set)); | |
foreach (token_get_all($input) as $token) { | |
if (!is_array($token)) | |
$token = array(0, $token); | |
switch ($token[0]) { | |
case T_COMMENT: | |
case T_ML_COMMENT: | |
case T_DOC_COMMENT: | |
case T_WHITESPACE: | |
$space = ' '; | |
break; | |
default: | |
if (isset($set[substr($output, -1)]) || | |
isset($set[$token[1]{0}])) $space = ''; | |
$output .= $space . $token[1]; | |
$space = ''; | |
} | |
} | |
// write shrinked file | |
fwrite( | |
fopen($filename, 'w'), | |
$output | |
); | |
} | |
// recursive file search | |
foreach (NFinder::findFiles('*.php')->from('files') as $file) { | |
echo $file, "\n"; | |
shrink($file); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment