Re: [PHP] parse speed vs require speed

2001-02-14 Thread Michael McGlothlin
> having your software more dynamic. > > Cheers, > Maxim Maletsky > > -Original Message- > From: Soma Interesting [mailto:[EMAIL PROTECTED]] > Sent: Wednesday, February 14, 2001 5:16 AM > To: [EMAIL PROTECTED] > Subject: [PHP] parse speed vs require speed > >

RE: [PHP] parse speed vs require speed

2001-02-13 Thread Maxim Maletsky
ts of your code having your software more dynamic. Cheers, Maxim Maletsky -Original Message- From: Soma Interesting [mailto:[EMAIL PROTECTED]] Sent: Wednesday, February 14, 2001 5:16 AM To: [EMAIL PROTECTED] Subject: [PHP] parse speed vs require speed I'm wondering if I should or

Re: [PHP] parse speed vs require speed

2001-02-13 Thread Chris Lee
Accoring to Microsofts book 'Rapid Development' (dont knock it, excellent book) says the average human can not keep track of more then 500 lines of code at once, I beleive it. I break my code up into sections smaller then 500 lines, keeps the code better. load time because files are distributed is

[PHP] parse speed vs require speed

2001-02-13 Thread Soma Interesting
I'm wondering if I should organize the functions for my project into a single large file and have only one include/require, or break the code out into separate function library files and use a number of includes/requires. With a single large function library I'm guessing PHP would parse this