How to remove all PHP array elements containing a certain sub-string?

那年仲夏 提交于 2019-12-20 01:43:37

问题


ok i looked up some functions and i don't seem to lucky of finding any,

i wanna filter an array to strip specific array that contains some string

heres an example :

$array(1 => 'January', 2 => 'February', 3 => 'March',);
$to_remove = "Jan"; // or jan || jAn, .. no case sensitivity
$strip = somefunction($array, $to_remove);
print_r($strip);

it should return

[1] => February
[2] => March

a function that looks for the sub-string for all values in an array, if the sub-string is found, remove that element from the array


回答1:


You can use array_filter and stripos

$array = array(1 => 'January', 'February', 'March');
print_r(array_filter($array, function ($var) { return (stripos($var, 'Jan') === false); }));



回答2:


You can use array_filter() with a closure (inline-function):

array_filter(
  $array,
  function ($element) use ($to_remove) {
    return strpos($element, $to_remove) === false;
  }
);

(PHP Version >= 5.3)




回答3:


The simplest way is with array_filter. This function receives the array to filter and a callback function that does the actual filtering based on the value received:

function filter_func( $v )
{
  return ( ( $var % 2 ) == 0 );
}
$test_array = array( 1, 2, 3, 4, 5, 6, 7, 8, 9, 10 );
print_r( array_filter( $test_array, "filter_func" ) );

Hope helped!



来源:https://stackoverflow.com/questions/10474216/how-to-remove-all-php-array-elements-containing-a-certain-sub-string

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!