Answers for "remove specific key 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
1

PHP: How to remove specific element from an array?

$array = array('apple', 'orange', 'strawberry', 'blueberry', 'kiwi', 'strawberry'); //throw in another 'strawberry' to demonstrate that it removes multiple instances of the string
$array_without_strawberries = array_diff($array, array('strawberry'));
print_r($array_without_strawberries);
Posted by: Guest on May-11-2021
1

remove key of an array php

$result_Member = $this->Member->get_list_member_belong_to_company($id);

/* 
$result_Member = array(
	[10] => 10,
    [20] => 11,
    [30] => 12,
)
*/

// remove key, get values only
$member_ids = array_values($result_Member);

/*
$result_Member = array(
	[0] => 10,
    [1] => 11,
    [2] => 12,
)
*/
Posted by: Guest on October-21-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 specific key in array php"

Browse Popular Code Answers by Language