PHP – Do While Loops Eli the Computer Guy PHP Programming (NEW) Do While Loops perform one iteration before a condition is tested. <?php $x = 80; do { print "Hello time number $x"; print "<br>"; $x++; } while($x <= 10); ?> PHP
PHP Programming (NEW) PHP – Sort Array by Key – ksort() and krsort() Eli the Computer Guy PHP Programming (NEW) You can sort arrays by key with ksort() and krsort().
PHP Programming (NEW) PHP – Multidimensional Arrays Eli the Computer Guy PHP Programming (NEW) Multidimensional delays are when you use Arrays as values for Arrays.
*NEW PHP – Turn Strings into Arrays with explode() Eli the Computer Guy *NEW, PHP Programming (NEW) The explode() function allows you to turn a String into an Array based on a separator you define. explode() https://www.php.net/manual/en/function.explode.php https://www.w3schools.com/php/func_string_explode.asp explode.php
Be the first to comment