![]() |
VOOZH | about |
An array is essentially a storage element for key-value pairs belonging to the same data type. If keys are specified explicitly, ids beginning from 0 as assigned to the values by the compiler on their own. Arrays allow a large variety of operations, like access, modification, and deletion upon the stored elements. The element positions are then adjusted accordingly.
Table of Content
The value is first looked for in the array and then deleted successively. The array_search() method is used to search the array for a specified value. If it is successful, it returns the first corresponding key. The array_search() method is case-sensitive in terms of matching the specified value with the iterated values of the array. If there are multiple occurrences of the same value, only one is fetched out of it.
Syntax:
array_search($value, $array);Arguments:
Return value: Returns the key if the value exists in the array, else returns false.
unset() method:
The unset() function in PHP is used to reset any variable. If unset() is called upon a user-defined function, it unsets the local variables. There can be many values that can be specified as arguments of this function. At least one variable is mandatory in the unset() method.
Syntax:
unset($var);Return value: The unset() function does not return any value.
PHP code:
Original Array:
array(4) {
[0]=>
string(13) "GeeksForGeeks"
[1]=>
string(6) "Python"
[2]=>
string(4) "Java"
[3]=>
string(7) "Physics"
}
Modified Array:
array(3) {
[0]=>
string(13) "GeeksForGeeks"
[1]=>
string(6) "Python"
[2]=>
string(4) "Java"
}The array_diff() function in PHP is used to compare the values of two (or more) arrays and return the differences. It returns an array that contains the entries from array1 that are not contained in array2 or array3, etc.
Syntax:
array_diff(arr, array1, array2, ...)Arguments:
Return value: Returns an array containing the entries from arr that are not present in any of the other corresponding arrays.
We rely on the approach that we convert the value into an array using the array() method in PHP and then apply the array_diff() method over both of these arrays. The difference in comparison to the earlier method is that all the instances of the specified values are removed from the main array.
PHP code:
Original Array:
array(5) {
[0]=>
string(13) "GeeksForGeeks"
[1]=>
string(6) "Python"
[2]=>
string(4) "Java"
[3]=>
string(7) "Physics"
[4]=>
string(6) "Python"
}
Modified Array:
array(3) {
[0]=>
string(13) "GeeksForGeeks"
[2]=>
string(4) "Java"
[3]=>
string(7) "Physics"
}PHP code: The following code illustrates the usage of this approach where the keys are not numerical IDs.
Original Array:
array(5) {
["key1"]=>
string(13) "GeeksForGeeks"
["key2"]=>
string(6) "Python"
["key3"]=>
string(4) "Java"
["key4"]=>
string(7) "Physics"
["key5"]=>
string(6) "Python"
}
Modified Array:
array(4) {
["key1"]=>
string(13) "GeeksForGeeks"
["key2"]=>
string(6) "Python"
["key4"]=>
string(7) "Physics"
["key5"]=>
string(6) "Python"
}To delete array elements by value using array_values() with array_splice() in PHP, find the key of the value, splice the array at that key, then reindex the array using array_values().
Example: In this example we declares an associative array, prints it, finds and removes a specified value ('Java'), reindexes the array using array_values(), and then prints the modified array.
Original Array:
array(3) {
["key1"]=>
string(13) "GeeksForGeeks"
["key2"]=>
string(6) "Python"
["key3"]=>
string(4) "Java"
}
<br><br>Modified Array:
array(2) {
[0]=>
string(13) "Geek...In the loop approach, you iterate through the array using foreach, checking each value. If the value matches the value to delete, unset() is used to remove the element from the array. This method is straightforward and allows conditional logic for value comparison.
Example:
Array ( [0] => apple [1] => cherry [2] => date )
This method involves defining a callback function that returns false for the value to be deleted, effectively removing it from the array.
Example: In this example, the deleteByValue function takes an array and the value to be deleted as parameters. It uses array_filter() with a callback function that checks each element. If the element matches the value to delete, the callback returns false, removing it from the array. The use ($valueToDelete) syntax allows the callback function to access the $valueToDelete variable from the outer scope.
Array ( [0] => PHP [2] => Python [3] => JavaScript )
Using array_map() with array_keys() in PHP involves creating a new array of keys where the specified value is found using array_keys(), then removing those elements with unset(). This method ensures that all instances of the value are efficiently deleted from the array.
Example
Array ( [0] => apple [2] => cherry [3] => apple )