Answers for "how to empty an array php"

PHP
10

php array remove empty values

<?php
$arr = array('1', '', '2', '3', '0');
// Incorrect:
print_r(array_filter($arr));
// Correct:
print_r(array_filter($arr, 'strlen'));
//Custom
print_r(array_filter($arr, function ($val) {if ($val > 0) {return true;} else {return false;}}));
Posted by: Guest on July-07-2020
17

array empty check in php

if (empty($array)) {
     // list is empty.
}
Posted by: Guest on April-15-2020
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

php create empty array with size

$my_array = array_fill(0, $size_of_the_array, $some_data);
Posted by: Guest on August-13-2021

Code answers related to "how to empty an array php"

Browse Popular Code Answers by Language