How to count the number of lines in the current source file name with PHP

1 Answer

0 votes
$current_file_name = basename($_SERVER['PHP_SELF']); 

$number_of_lines = count(file($current_file_name)); 

echo "$number_of_lines lines in $current_file_name";


/*
run:

19 lines in test.php 

*/

 



answered Feb 23, 2019 by avibootz

Related questions

2 answers 200 views
1 answer 148 views
1 answer 223 views
1 answer 150 views
1 answer 130 views
1 answer 138 views
1 answer 116 views
...