How to Remove Multiple Keys from PHP Array?
In this example, we will remove array elements by keys array in php. we can delete multiple keys from array php. basically we will unset multiple keys from php array.
if you see in php documentation there are not available directly remove multiple keys from php array. But we will create our own php custom function and remove all keys by given array value.
In this example i created custom function as array_except(). you need to pass one main array and another will be keys array that you want to remove it.
So let's see bellow example:
Example:
<?php
$myArray = [
'name'=>'Hardik Savani',
'email'=>'savanihd@gmail.com',
'gender'=>'male',
'website'=>'itsolutionstuff.com'
];
$newArray = array_except($myArray, ['gender', 'email']);
print_r($newArray);
function array_except($array, $keys){
foreach($keys as $key){
unset($array[$key]);
}
return $array;
}
?>
Output:
Array
(
[name] => Hardik Savani
[website] => itsolutionstuff.com
)
I hope it can help you...
Hardik Savani
I'm a full-stack developer, entrepreneur and owner of ItSolutionstuff.com. I live in India and I love to write tutorials and tips that can help to other artisan. I am a big fan of PHP, Laravel, Angular, Vue, Node, Javascript, JQuery, Codeigniter and Bootstrap from the early stage. I believe in Hardworking and Consistency.
We are Recommending you
- PHP MySQL Create Dynamic Treeview Example
- PHP MySQL Column Sorting Example Tutorial
- PHP MySQL Login with Google Account Example
- PHP MySQL DataTables Server-side Processing Example
- How to Get File Name without Extension in PHP?
- How to Remove White Space from String in PHP?
- How to Remove Specific Element by Value from Array in PHP?
- How to Remove undefined Value from Array in JQuery?
- How to Get Maximum Key Value of Array in PHP?
- How to Remove Empty Values from Array in PHP?
- How to Add Prefix in Each Key of PHP Array?
- How to Get Minimum Key Value of Array in PHP?
- How to Remove Null Values from Array in PHP?
- How can Make an Array from the Values of Another Array's Key Value?