How to count the number of lines in the source of specific URL with PHP

1 Answer

0 votes
$url = "http://seek4info.com/index.php?query=web+hosting"; 

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

echo "$number_of_lines lines in $url";


/*
run:

676 lines in http://seek4info.com/index.php?query=web+hosting 

*/

 



answered Feb 24, 2019 by avibootz

Related questions

1 answer 251 views
2 answers 367 views
1 answer 190 views
2 answers 183 views
2 answers 262 views
...