Sololearn: Learn to Code
New course! Every coder should learn Generative AI!
Try a free lesson
+ 3
The for loop encapsulates the loop variable in a more compact syntax
5th Apr 2020, 9:22 PM
Erik Awwad
Erik Awwad - avatar
+ 3
Use the search bar before posting in the Q&A forum because what you want to ask might have already been asked and answered. This will prevent adding to duplicates.
5th Apr 2020, 9:42 PM
Avinesh
Avinesh - avatar
+ 1
For loops
5th Apr 2020, 10:01 PM
Brahian Casco
Brahian Casco - avatar
0
Sometimes while loop is useful with some php functions, for example: while (! feof($file)) { // read the file } But when we use counter variable(s) the for loop is more convenient.
6th Apr 2020, 10:42 PM
Hello World
Hello World - avatar
0
The "for" loop used only when we already knew the number of iterations. The "while" loop used only when the number of iteration are not exactly known.
7th Apr 2020, 4:02 AM
Jagadeesh
Jagadeesh - avatar