函数介绍:

file_get_contents() 把整个文件读入一个字符串中。

explode() 函数使用一个字符串分割另一个字符串,并返回由字符串组成的数组。

count() 函数返回数组中元素的数目。

在线视频教程分享:php视频教程

示例如下:

public function totalByFile($fullFileName) { $fileContent = file_get_contents($fullFileName); $lines = explode("\n", $fileContent); $lineCount = count($lines);   for($i = $lineCount -1; $i > 0; $i -= 1) {  $line = $lines[$i];  if ($line != "") break;  $lineCount -= 1; //最后几行是空行的要去掉。 } unset($fileContent); unset($lines);   $totalCodeInfo = new TotalCodeInfo(); $totalCodeInfo->setFileCount(1); $totalCodeInfo->setLineCount($lineCount); return $totalCodeInfo; }

相关文章教程推荐:php入门教程

更多相关文章

  1. PHP随机生成不重复的8位卡号(数字)和卡密(字符串)
  2. Mac下使用php的error_log()函数发送邮件
  3. PHP 学习总结之函数
  4. PHP执行Linux命令的两个有用的函数exec和shell_exec
  5. PHP中的pack和unpack函数的用法详解
  6. 四种好用的PHP自定义加密函数(可逆/不可逆)
  7. 通过header函数设置响应头解决php跨域问题
  8. 关于php中匿名函数与回调函数的详解
  9. php匿名函数的使用

随机推荐

  1. android 修改开关机铃声
  2. Android Handler解析和相关问题
  3. Android(安卓)横竖屏切换生命周期
  4. Android:使用JDBC链接MySQL数据库
  5. 13、Android重写系统返回键
  6. android 常用URI 值得记住
  7. 2011年沈大海讲师Android的新浪微博客户
  8. Android AIDL机制
  9. Android尺寸标注设计大全和Android切图规
  10. Android 透明式系统栏设计