Kevin Stone wrote:
> 
> Logically the if-else construct is faster becuase PHP doesn't have to parse
> and execute the second conditional.  An if-elseif construct is ussually
> followed by an else block to describe a default action if no other
> conditions are true.  Otherwise you may as well use sequential if()
> statements becuase it's exactly the same thing.
> - Kevin

Sequential if() statments will not be the same as the if-elseif() system
when more than two conditional checks are matched. The sequential will
process both blocks, whereas the if-elseif() will only process the first
match :)

Cheers,
Rob.
-- 
.---------------------------------------------.
| Worlds of Carnage - http://www.wocmud.org   |
:---------------------------------------------:
| Come visit a world of myth and legend where |
| fantastical creatures come to life and the  |
| stuff of nightmares grasp for your soul.    |
`---------------------------------------------'

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to