> While trying to print A-Z...
> This spews A-Z, then AA-YZ, then stops, most likely from a timeout.
>for ($x = 'A'; $x <= 'Z'; $x++)
> {
> echo "$x\n";
> }
> ?>
This very issue was raised earlier today. Check out the thread:
"Why does it work this way".
Chris
While trying to print A-Z...
This spews A-Z, then AA-YZ, then stops, most likely from a timeout.
This works as expected.
Most likely the first one hits the execution time-limit, and that's
why it finally stops. What I can't figure out is why it would do
A-Z and then start over at AA since t
2 matches
Mail list logo