How can i count the LOC of a Netbeans PHP-Project?
i´m using Netbeans 7.0.1 on Windows 7
How can i count the LOC of a Netbeans PHP-Project?
i´m using Netbeans 7.0.1 on Windows 7
I was looking for the same and stumbled over this question, but the accepted answer is only for LOC, not for LLOC, and ProjectCodeMeter seems to be a bit overkill.
What I found as a working solution for me: phploc by Sebastian Bergmann. Works like a charm.
I haven't found a way to do that in netbeans (on any OS) but i guess you could get away with something like the following:
Save this little script someplace where you can find it: (lets say "cntln.php")
and use it on the commandline (cmd.exe):
c:>
php -q cntln.php "C:\projects\foo" "~\.php$~"
With some minor trickery I'm sure you can create a shortcut to it that you can put on the quick launch bar or use it in some other tooling.
Might have bugs since I typed it just now, mostly in the SO text box.