Answers for "php remove particular element from array"

PHP
1

searching and removing element from an array php

<?php
$hackers = array ('Alan Kay', 'Peter Norvig', 'Linus Trovalds', 'Larry Page');

print_r($hackers);

// Search
$pos = array_search('Linus Trovalds', $hackers);

echo 'Linus Trovalds found at: ' . $pos;

// Remove from array
unset($hackers[$pos]);

print_r($hackers);
Posted by: Guest on May-14-2020
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 "php remove particular element from array"

Browse Popular Code Answers by Language