Answers for "make the array empty php"

PHP
16

array empty check in php

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

Browse Popular Code Answers by Language