Answers for "remove data using particular id in array php["

PHP
0

php remove specific element from array

if (($key = array_search('strawberry', $array)) !== false) {
    unset($array[$key]);
}
Posted by: Guest on July-08-2020
0

PHP: How to remove specific element from an array?

if (($key = array_search('strawberry', $array)) !== false) {
    unset($array[$key]);
}
Posted by: Guest on May-11-2021

Code answers related to "remove data using particular id in array php["

Browse Popular Code Answers by Language