马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
不断巩固,摸透大部分PHP常用函数,并可理解OOP,MYSQL优化,以及模板 <?php
/**
* @author xiaoxiao <x_824@sina.com> 2011-1-12
* @link http://xiaoyaoxia.cnblogs.com/
* @license
* 统计目次下的文件行数及总文件数・・去除正文
*/
$obj = new CaculateFiles();
//假如设置为false,这不会显示每一个文件的信息,不然显示
$obj->setShowFlag(false);
//会跳过一切All开首的文件
$obj->setFileSkip(array('All'));
$obj->run("D:\PHPAPP\php\_tests");
//一切文件,(默许格局为.php)
$obj->setFileSkip(array());
$obj->run("D:\PHPAPP\php");
$obj->setShowFlag(true);
//跳过一切I和A开首的文件,(好比接口和笼统类开首)
$obj->setFileSkip(array('I', 'A'));
$obj->run("D:\PHPAPP\php");
/**
* 履行目次中文件的统计(包含文件数及总行数
*
* 1、跳过文件的时分:
* 婚配的划定规矩只是从文件名上着手,婚配的划定规矩也仅限在开首。
* 2、跳过文件中的正文行:
* 婚配的划定规矩只是从正文段落的头部婚配,假如呈现// 及 *及 #及/*开首的行及空行会被跳过。所以相似/*这类多汗正文,每行的开首都必需加上*号,不然没法婚配到这类的正文。
* 3、目次过滤:
* 婚配的划定规矩是从目次名的全名婚配
*/
class CaculateFiles {
/**
* 统计的后缀
*/
private $ext = ".php";
/**
* 是不是显示每一个文件的统计数
*/
private $showEveryFile = true;
/**
* 文件的的跳过划定规矩
*/
private $fileSkip = array();
/**
* 统计的跳过行划定规矩
*/
private $lineSkip = array("*", "/*", "//", "#");
/**
* 统计跳过的目次划定规矩
*/
private $dirSkip = array(".", "..", '.svn');
public function __construct($ext = '', $dir = '', $showEveryFile = true, $dirSkip = array(), $lineSkip = array(), $fileSkip = array()) {
$this->setExt($ext);
$this->setDirSkip($dirSkip);
$this->setFileSkip($fileSkip);
$this->setLineSkip($lineSkip);
$this->setShowFlag($showEveryFile);
$this->run($dir);
}
public function setExt($ext) {
trim($ext) && $this->ext = strtolower(trim($ext));
}
public function setShowFlag($flag = true) {
$this->showEveryFile = $flag;
}
public function setDirSkip($dirSkip) {
$dirSkip && is_array($dirSkip) && $this->dirSkip = $dirSkip;
}
public function setFileSkip($fileSkip) {
$this->fileSkip = $fileSkip;
}
public function setLineSkip($lineSkip) {
$lineSkip && is_array($lineSkip) && $this->lineSkip = array_merge($this->lineSkip, $lineSkip);
}
/**
* 履行统计
* @param string $dir 统计的目次
*/
public function run($dir = '') {
if ($dir == '') return;
if (!is_dir($dir)) exit('Path error!');
$this->dump($dir, $this->readDir($dir));
}
/**
* 显示统计了局
* @param string $dir 目次
* @param array $result 统计了局(包括总行数,无效函数,总文件数
*/
private function dump($dir, $result) {
$totalLine = $result['totalLine'];
$lineNum = $result['lineNum'];
$fileNum = $result['fileNum'];
echo "*************************************************************\r\n<br/>";
echo $dir . ":\r\n<br/>";
echo "TotalLine: " . $totalLine . "\r\n<br/>";
echo "TotalLine with no comment and empty: " . $lineNum . "\r\n<br/>";
echo 'TotalFiles:' . $fileNum . "\r\n<br/>";
}
/**
* 读取目次
* @param string $dir 目次
*/
private function readDir($dir) {
$num = array('totalLine' => 0, 'lineNum' => 0, 'fileNum' => 0);
if ($dh = opendir($dir)) {
while (($file = readdir($dh)) !== false) {
if ($this->skipDir($file)) continue;
if (is_dir($dir . '/' . $file)) {
$result = $this->readDir($dir . '/' . $file);
$num['totalLine'] += $result['totalLine'];
$num['lineNum'] += $result['lineNum'];
$num['fileNum'] += $result['fileNum'];
} else {
if ($this->skipFile($file)) continue;
list($num1, $num2) = $this->readfiles($dir . '/' . $file);
$num['totalLine'] += $num1;
$num['lineNum'] += $num2;
$num['fileNum']++;
}
}
closedir($dh);
} else {
echo 'open dir <' . $dir . '> error!' . "\r";
}
return $num;
}
/**
* 读取文件
* @param string $file 文件
*/
private function readfiles($file) {
$str = file($file);
$linenum = 0;
foreach ($str as $value) {
if ($this->skipLine(trim($value))) continue;
$linenum++;
}
$totalnum = count(file($file));
if (!$this->showEveryFile) return array($totalnum, $linenum);
echo $file . "\r\n";
echo 'TotalLine in the file:' . $totalnum . "\r\n";
echo 'TotalLine with no comment and empty in the file:' . $linenum . "\r\n";
return array($totalnum, $linenum);
}
/**
* 履行跳过的目次划定规矩
* @param string $dir 目次名
*/
private function skipDir($dir) {
if (in_array($dir, $this->dirSkip)) return true;
return false;
}
/**
* 履行跳过的文件划定规矩
* @param string $file 文件名
*/
private function skipFile($file) {
if (strtolower(strrchr($file, '.')) != $this->ext) return true;
if (!$this->fileSkip) return false;
foreach ($this->fileSkip as $skip) {
if (strpos($file, $skip) === 0) return true;
}
return false;
}
/**
* 履行文件中行的跳过划定规矩
* @param string $string 行内容
*/
private function skipLine($string) {
if ($string == '') return true;
foreach ($this->lineSkip as $tag) {
if (strpos($string, $tag) === 0) return true;
}
return false;
}
}不过还好,PHP语言给出的语法错误很详细,只要稍微熟悉一点之后,看错误提示就能很容易找出错误所在的。PHP还有一个特别好用的调试功能,在PHP语句中,你可以随时用echo来输出结果。 |