what do 1024 n 2048 means?

PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!

Moderator: General Moderators

Post Reply
akazukin
Forum Newbie
Posts: 4
Joined: Thu Oct 06, 2005 8:29 pm

what do 1024 n 2048 means?

Post by akazukin »

$moredetails .= fgets ($fp, 2048);
$moredetails .= fgets ($fp, 1024);
In my source code, scripted by others, I have noticed that there are 2 different numbers , 1024 and 2048. Anyone noe what do they mean??
User avatar
feyd
Neighborhood Spidermoddy
Posts: 31559
Joined: Mon Mar 29, 2004 3:24 pm
Location: Bothell, Washington, USA

Post by feyd »

the documentation explains it...

http://php.net/function.fgets
Post Reply