Hi,
If I have some one time processing, then a endless loop (till the proc is
killed). Which is faster or are they the same:
if ($firstTime) {
...stuff...
$firstTime = 0;
}
else {
...stuff...
}
or
if (! $firstTime) {
...stuff...
}
else {
...stuff...
$firstTime = 0;
}
Just curious
Jay