Hi there,
I've once read an article about the different
methods of building a variable which contains
a large web-page. The lines are concatenated
subsequently by statements like
$var .= "some string";
or by
$var = $var."some string";
There was also some stacking and output
buffering involved in this. The stacking
method was something like:
function stack_string($string){
global $stack;
array_push($stack,$string);
}
and later
function print_string($stack){
for ($i=0;$i < count($stack); $i++){
print $stack[$i];
}
}
I am really interested in that article but
my net-wide search did not succeed so
far. I'd be really glad if somebody could
point me to this article.
Regards
Wolfgang