Answers for "reset php array"

PHP
1

clear array php

//To clear array you are able to simply re-instantiate it
$foo = array();

//To clear $foo from the symbol table use
unset($foo);
Posted by: Guest on July-15-2020
0

reset array keys php

foreach($input as &$val) {
   $val = array_values($val);
}
Posted by: Guest on May-19-2020

Browse Popular Code Answers by Language