bilis_money Posted July 26, 2007 Share Posted July 26, 2007 Yo! This one is easy, i want to count the total row of a flat file. Let say i have a file called 'myfile.txt' now inside that text file it has text content rows like below, 1. banana //first row 2. orange 3. papaya 4. grapes 5. lemon //last row now how do i count the total row of this text file and display the result? I think i done this before i just lost the script tho. thanks in advance. Link to comment https://forums.phpfreaks.com/topic/61780-solved-counting-the-total-row-of-a-flat-file/ Share on other sites More sharing options...
Aureole Posted July 26, 2007 Share Posted July 26, 2007 I don't know to be honest, I have something similar which shows a random line from a text file each time... <?php $textfile ="something.txt"; $items = file("$textfile"); $item = rand(0, sizeof($items)-1); echo $items[$item]; ?> Perhaps that could help you work out what to do in some way, if it doesn't then sorry. Link to comment https://forums.phpfreaks.com/topic/61780-solved-counting-the-total-row-of-a-flat-file/#findComment-307610 Share on other sites More sharing options...
bilis_money Posted July 26, 2007 Author Share Posted July 26, 2007 here is my answer to my own question echo count(file('filename.txt')); problem solved. Link to comment https://forums.phpfreaks.com/topic/61780-solved-counting-the-total-row-of-a-flat-file/#findComment-307625 Share on other sites More sharing options...
Aureole Posted July 26, 2007 Share Posted July 26, 2007 Well I'm glad you worked it out. Link to comment https://forums.phpfreaks.com/topic/61780-solved-counting-the-total-row-of-a-flat-file/#findComment-307627 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.