PHP Do-While Versus the While Loop
Wednesday, May 21st, 2008Well today I happened to be looking at some very old php code. It was done in PHP4, but that really doesn’t matter. Anyways, when I was going through the code I noticed the person who had written the code did lots of do-while loops. I don’t do any “do-while” loops mainly out of personal preference. I do “regular while” loops mainly for the reason that they are more practical to me. More will be explained below about this. However, it got me thinking today and I had to ask myself this question; Which loop would load faster?