Go Back   CodingForums.com > :: Server side development > PHP

Before you post, read our: Rules & Posting Guidelines

Reply
 
Thread Tools Rate Thread
Enjoy an ad free experience by logging in. Not a member yet? Register.
Old 01-07-2006, 05:44 AM   PM User | #1
GO ILLINI
Regular Coder

 
GO ILLINI's Avatar
 
Join Date: Jun 2005
Location: USA
Posts: 634
Thanks: 0
Thanked 7 Times in 7 Posts
GO ILLINI is an unknown quantity at this point
line numbers

I know there was someting on php.net about line numbers...
It was an example in the functions. I was searching and I saw it and didnt really care because that was not what I was looking for. Now I am, but I cant find it again. Does anyone have any ideas? What I want is the source with line numbers...




Thanks,
ILLINI
__________________
Why not thank me?

http://adamsworld.name
GO ILLINI is offline   Reply With Quote
Old 01-07-2006, 05:47 AM   PM User | #2
Velox Letum
Senior Coder

 
Join Date: Apr 2005
Location: Colorado, United States
Posts: 1,208
Thanks: 0
Thanked 0 Times in 0 Posts
Velox Letum is an unknown quantity at this point
Line numbers? Just explode the text by \n and foreach the array.

PHP Code:
$text 'Foo
Bar
Is
Bar
Foo'
;
$text_array explode("\n"$text);
foreach (
$text_array as $key => $line) {
     echo 
'Line ' $key ': ' $line '<br />' "\n";

__________________
"$question = ( to() ) ? be() : ~be();"
Velox Letum is offline   Reply With Quote
Old 01-07-2006, 05:58 AM   PM User | #3
GO ILLINI
Regular Coder

 
GO ILLINI's Avatar
 
Join Date: Jun 2005
Location: USA
Posts: 634
Thanks: 0
Thanked 7 Times in 7 Posts
GO ILLINI is an unknown quantity at this point
Would there be an easy way to just plug a filename in there instead of copy and pasteing?



ILLINI
__________________
Why not thank me?

http://adamsworld.name
GO ILLINI is offline   Reply With Quote
Old 01-07-2006, 06:04 AM   PM User | #4
GO ILLINI
Regular Coder

 
GO ILLINI's Avatar
 
Join Date: Jun 2005
Location: USA
Posts: 634
Thanks: 0
Thanked 7 Times in 7 Posts
GO ILLINI is an unknown quantity at this point
I found it!
http://us3.php.net/manual/en/function.file.php
__________________
Why not thank me?

http://adamsworld.name
GO ILLINI is offline   Reply With Quote
Reply

Bookmarks

Jump To Top of Thread


Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT +1. The time now is 09:51 AM.


Advertisement
Log in to turn off these ads.