Answers for "write data of array to variables in php with foreach loop"

PHP
0

loop through values of hash php

<?php
    while (list($var, $val) = each($array)) {
        print "$var is $val\n";
    }
?>
Posted by: Guest on February-16-2020

Code answers related to "write data of array to variables in php with foreach loop"

Browse Popular Code Answers by Language