7

How can I measure number of lines of code in my PHP web development projects?

Edit: I'm interested in windows tools only

Vadim Kotov
  • 8,084
  • 8
  • 48
  • 62
Ali
  • 261,656
  • 265
  • 575
  • 769

7 Answers7

26

Check CLOC, it's a source code line counter that supports many languages, I always recommend it.

It will differentiate between actual lines of code, blank lines or comments, it's very good.

In addition there are more code counters that you can check:

Christian C. Salvadó
  • 807,428
  • 183
  • 922
  • 838
4

phploc

No experience if it runs on Windows, tho, but searching on the web showed some results of people getting it to work on Windows..

Heikki Naski
  • 2,610
  • 1
  • 21
  • 13
1

If you are on a linux box, the easiest way is probably directed by this SO question:

count (non-blank) lines-of-code in bash

Community
  • 1
  • 1
Jeffrey
  • 1,837
  • 5
  • 25
  • 40
1

If you are using VS code, install this extension called Lines of Code (LOC)

After installation, use ctrl+p, type linecount, and you will find below options.

enter image description here

Count Workspace files will give the output in the following format.

enter image description here

This works on any OS with VS Code with the above plugin installed.

Tmh
  • 1,321
  • 14
  • 27
1
  1. npm install -g cloc
  2. Go to the project folder
  3. Delete the node_modules and dist folder (if you have any), Because you don't need to calculate loc in dist and node_modules
  4. inside the project folder
  5. run this command: cloc *

Output will look like this :

enter image description here

sunny rai
  • 565
  • 6
  • 6
0

Our SD Source Code Search Engine is a GUI for searching across large bodies of source code such as a PHP web site. It is fast because it preindexes the source code.

As a side effect of the indexing process, it also computes metrics on the source code base, including SLOC, Comments, blank lines, Cyclomatic and Halsted complexity numbers.

And it runs on Windows.

Ira Baxter
  • 93,541
  • 22
  • 172
  • 341
  • Downvoter: what's the objection? It not only counts *code* lines accuratly but also provides additional metrics data. – Ira Baxter Apr 30 '11 at 14:33
-3

If you're using a full fledged IDE the quick and dirty way is to count the number of "\n" patterns using the search feature (assuming it supports regexes)

Allain Lalonde
  • 91,574
  • 70
  • 187
  • 238