Answers for "php empty array with keys"

PHP
2

php empty array

//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

php array all keys empty

array('key1' => null, 'key2' => null, 'key3' => null, 'key4' => null)
if (!array_filter($array)) {
    // all values are empty (where "empty" means == false)
}
Posted by: Guest on May-06-2020

Browse Popular Code Answers by Language