Jump to content

[SOLVED] Counting the total row of a flat file?


bilis_money

Recommended Posts

Yo!  :D

 

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.  ;D

 

thanks in advance.

 

 

 

 

 

Link to comment
Share on other sites

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
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.