PDA

View Full Version : Count Code Lines


joeboo
29 Jan 2006, 21:48
Do any of you guys know of a program that can count the number of lines (PHP lines) of files? Like, selecting a folder where PHP files are stored and having it count all the lines of every file.

BamaStangGuy
29 Jan 2006, 21:55
Filburt may know since he has a huge project he is working on

sabret00the
30 Jan 2006, 10:41
Do any of you guys know of a program that can count the number of lines (PHP lines) of files? Like, selecting a folder where PHP files are stored and having it count all the lines of every file.

you could write a function to do it in php

Lea Verou
17 Mar 2006, 23:52
I also need this...

(and I'm too lazy to write it in php :p)

filburt1
18 Mar 2006, 18:08
Filburt may know since he has a huge project he is working on
I just wrote my own script that recursively enters each chosen directory and counts each file's lines. Not very good but it works.

Lea Verou
18 Mar 2006, 18:35
will you share? :)

filburt1
18 Mar 2006, 22:41
Code:
---------------
Code is only visible to licensed users, and only when logged into the forums.
---------------


Will need significant changes to work for your setup.

Lea Verou
18 Mar 2006, 22:43
Thanks!