Count total rows in Netbeans

Is there a way to count the total number of lines inside a php project?

+3
source share
1 answer

On Linux, you have a wonderful wc command:

wc -l yourfile.txt
+5
source

All Articles