码迷,mamicode.com
首页 > Web开发 > 详细

php获取代码总行数

时间:2018-04-17 11:46:30      阅读:180      评论:0      收藏:0      [点我收藏+]

标签:代码   color   AC   return   echo   等于   ++   empty   comm   

<?php
ini_set(‘max_execution_time‘, ‘0‘);
function code_linenum($path, $i) {
    if (!is_dir($path)) {
        return false;
    }
    $files = glob($path . ‘/*‘);
    if ($files) {
        foreach ($files as $file) {
            if (is_dir($file)) {
                code_linenum($file, $i);
            }
            $buffer = ‘‘;
            $handle = @fopen($file, ‘r‘);
            if ($handle) {
                while(!feof($handle)) {
                    $buffer = fgets($handle,4096);
                    $buffer = trim($buffer);    //同等于==$buffer = str_replace("\r\n", ‘‘, $buffer);
                    if (!empty($buffer)) {
                        $comments = array();
                        $comments[0]  = ‘‘;
                        $comments[0] .= preg_match(‘/\/\//i‘, $buffer) ? ‘####‘ : ‘‘;
                        $comments[0] .= preg_match(‘/\/\*\*/i‘, $buffer) ? ‘####‘ : ‘‘;
                        $comments[0] .= preg_match(‘/\*\s/i‘, $buffer) ? ‘####‘ : ‘‘;
                        $comments[0] .= preg_match(‘/\*\//i‘, $buffer) ? ‘####‘ : ‘‘;
                        if (empty($comments[0])) {
                            global $i;
                            $i++;
                        }
                    }
                }
                fclose($handle);
            }
        }
    }
    return $i;
}
//调用函数
global $i;
$linenums =  code_linenum(‘D:/guozi/V3.0‘ ,$i);
echo ‘代码总行数为:‘ . $linenums;

 

php获取代码总行数

标签:代码   color   AC   return   echo   等于   ++   empty   comm   

原文地址:https://www.cnblogs.com/aifengguo/p/8861990.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!