Answers for "delete item from numeric array php"

PHP
7

php delete item from array

if (in_array('strawberry', $array)) 
{
    unset($array[array_search('strawberry',$array)]);
}
Posted by: Guest on November-10-2021
0

php remove element from array by value

// matrix array
foreach($appsList as $key => $app) {
            if($app["app_status"] !== "approved") {
                // remove orange apps
                unset($appsList[$key]);
            }
}
Posted by: Guest on January-15-2021

Code answers related to "delete item from numeric array php"

Browse Popular Code Answers by Language