On Jun 9, 2005, at 9:48 AM, bruce wrote:
bian...
giave a psuedocode example of what you're trying to compare.. i
think i know
what you're asking, but i want to be sure..
OK, this is *pseudocode* remember... :)
Is either of these SIGNIFICANTLY slower:
=== Example 1 ===
while(loops 5000 times)
{
include(myfunction.php);
}
...where myfunction.php contains some code.
=== Example 2 ===
include_once(myfunction.php);
while(loops 5000 times)
{
myfunction(xxx);
}
...where myfunction.php defines the function myfunction().
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php