Posted inProgramming / php

PHP Array Remove specific value Example

Today, We want to share with you PHP Array Remove specific value Example.In this post we will show you php remove from array if value matches, hear for Remove specific value from array using php? we will give you demo and example for implement.In this post, we will learn about how to remove particular key from array in php with an example.

PHP Array Remove specific value Example

There are the Following The simple About PHP Array Remove specific value Example Full Information With Example and source code.

As I will cover this Post with live Working example to develop php array remove keys keep values, so the remove key from associative array php for this example is following below.

PHP Array Remove specific value Example
PHP Array Remove specific value Example

php remove element from array by value Using array_diff()

Removing specific value

Removing an item from an associative array in PHP by value


function delete_params($array,$value) {
  return array_diff($array, (is_array($value) ? $value : array($value)));
}
 
$pArraylist = array('php', 'laravel', 'CodeIgniter', 'VueJS', 'Magento', 'Angularjs');
 
$result = delete_params($pArraylist,'CodeIgniter');
 
print_r($result);
 
// output : Array ( [0] => php [1] => laravel [3] => VueJS [4] => Magento [5] => Angularjs )

php remove element from array by key Using array_search()

Remove a specific item from an array in PHP

function delete_params(&$array,$value) {
 if(($key = array_search($value,$array)) !== false) {
       unset($array[$key]);
  }    
}
 
$pArraylist = array('php', 'laravel', 'CodeIgniter', 'VueJS', 'Magento', 'Angularjs');
delete_params($pArraylist,'php');
print_r($pArraylist)

php remove value from array if exists Using array_keys()

PHP: How to remove specific element from an array?


function delete_params($array,$value) {
 foreach (array_keys($array, $value) as $key) {
    unset($array[$key]);
 }  
  return $array;
}
 
$pArraylist = array('php', 'laravel', 'CodeIgniter', 'VueJS', 'Magento', 'Angularjs','php');
$result = delete_params($pArraylist,'php');
print_r($result);
 
// output : Array ( [1] => laravel [2] => CodeIgniter [3] => VueJS [4] => Magento [5] => Angularjs ) 
Angular 6 CRUD Operations Application Tutorials

Read :

Summary

You can also read about AngularJS, ASP.NET, VueJs, PHP.

I hope you get an idea about PHP Array Remove specific value Example.
I would like to have feedback on my Pakainfo.com blog.
Your valuable feedback, question, or comments about this article are always welcome.
If you enjoyed and liked this post, don’t forget to share.

I am Jaydeep Gondaliya , a software engineer, the founder and the person running Pakainfo. I'm a full-stack developer, entrepreneur and owner of Pakainfo.com. I live in India and I love to write tutorials and tips that can help to other artisan, a Passionate Blogger, who love to share the informative content on PHP, JavaScript, jQuery, Laravel, CodeIgniter, VueJS, AngularJS and Bootstrap from the early stage.

Leave a Reply

Your email address will not be published. Required fields are marked *

We accept paid guest Posting on our Site : Guest Post Chat with Us On Skype