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 194 views
1 answer 145 views
1 answer 220 views
1 answer 145 views
1 answer 126 views
1 answer 135 views
1 answer 115 views
...