Created array_remove_value function

This commit is contained in:
Pierre 2017-06-18 15:46:22 +02:00
parent 219e26b4c0
commit 360347ba37

25
functions/arrays.php Normal file
View File

@ -0,0 +1,25 @@
<?php
/**
* Arrays functions
*
* @author Pierre HUBERT
*/
/**
* Delete a specified value from an array
*
* @param array $array The array to process
* @param Mixed $value The value to remove from the array
* @return Boolean True for a success
*/
function array_remove_value(array &$array, $value){
//Process value
foreach($array as $key=>$item){
if($item === $value)
unset($array[$key]);
}
//Success
return true;
}