Answers for "remove an item from an array based on item value in ph"

PHP
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
0

How To Unset Or Delete An Element From Array By Value In PHP?

if (($key = array_search($value, $sampleArray)) !== false) {
    unset($sampleArray[$key]);
}
Posted by: Guest on September-22-2021

Code answers related to "remove an item from an array based on item value in ph"

Browse Popular Code Answers by Language