Answers for "do-while loop php"

PHP
7

do while php

<?php
$i = 0;
do {
    echo $i;
} while ($i > 0);
?>
Posted by: Guest on April-01-2020
2

while true php

while(true) {
 // Infinite Loop
}
Posted by: Guest on August-10-2020

Browse Popular Code Answers by Language