Re: [PHP] # of lines in a file

2002-12-09 Thread Ray Hunter
Might not be the most secure way, but very fast...

$lines = `cat file.txt | wc -l`

That will give you the number of lines...but again not the best
method...


On Mon, 2002-12-09 at 09:58, [EMAIL PROTECTED] wrote:
> Hey guys, I've been searching the manual for a way to grab the number of 
> lines in a file and read a particular line from it, however I found no 
> solution to my problem so I'm wondering if any of you out there could help me 
> :-)
> 
> - CS
-- 

Ray Hunter
email:  [EMAIL PROTECTED]
www:http://venticon.com


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




RE: [PHP] # of lines in a file

2002-12-09 Thread John W. Holmes
> Hey guys, I've been searching the manual for a way to grab the number
of
> lines in a file and read a particular line from it, however I found no
> solution to my problem so I'm wondering if any of you out there could
help
> me

file() will read the file into an array, one line per element, so...

$line_to_read = 55;
$file_array = file('file.txt');
echo $file_array[$line_to_read];

Remember that arrays are zero based.

---John W. Holmes...

PHP Architect - A monthly magazine for PHP Professionals. Get your copy
today. http://www.phparch.com/




-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




Re: [PHP] # of lines in a file

2002-12-09 Thread Adam Voigt




$f = fopen("filename","r");

$data = ""

fclose($f);



$data = ""

$lines = count($data);



$certainline = $data[linenumberyouwant];



Replace filename in both places, and linenumberyouwant.



On Mon, 2002-12-09 at 11:58, [EMAIL PROTECTED] wrote:

Hey guys, I've been searching the manual for a way to grab the number of 

lines in a file and read a particular line from it, however I found no 

solution to my problem so I'm wondering if any of you out there could help me 

:-)



- CS




-- 
Adam Voigt ([EMAIL PROTECTED])
The Cryptocomm Group
My GPG Key: http://64.238.252.49:8080/adam_at_cryptocomm.asc








signature.asc
Description: This is a digitally signed message part


Re: [PHP] # of lines in a file

2002-12-09 Thread John Nichel
You could try...

$file = ( "/path/file.ext" );
$lines = sizeof ( $file );

[EMAIL PROTECTED] wrote:

Hey guys, I've been searching the manual for a way to grab the number of 
lines in a file and read a particular line from it, however I found no 
solution to my problem so I'm wondering if any of you out there could help me 
:-)

- CS



--
By-Tor.com
It's all about the Rush
http://www.by-tor.com


--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




[PHP] # of lines in a file

2002-12-09 Thread Clivus2k1
Hey guys, I've been searching the manual for a way to grab the number of 
lines in a file and read a particular line from it, however I found no 
solution to my problem so I'm wondering if any of you out there could help me 
:-)

- CS