Dayron Gallardo
Dayron Gallardo

Reputation: 1640

PHP array_intersect case-insensitive and ignoring tildes

Is there any function similar to "array_intersect" but it is in mode case-insensitive and ignoring tildes?

The array_intersect PHP function compares array elements with === so I do not get the expected result.

For example, I want this code :

$array1 = array("a" => "gréen", "red", "blue");
$array2 = array("b" => "green", "yellow", "red");
$result = array_intersect($array1, $array2);
print_r($result);

Outputs gréen and red. In default array_intersect function just red is proposed (normal cause ===).

Any solution ?

Thank you in advance

Upvotes: 4

Views: 6253

Answers (2)

Alex Jurado - Bitendian
Alex Jurado - Bitendian

Reputation: 1027

<?php

function to_lower_and_without_tildes($str,$encoding="UTF-8") {
  $str = preg_replace('/&([^;])[^;]*;/',"$1",htmlentities(mb_strtolower($str,$encoding),null,$encoding));
  return $str;
}

function compare_function($a,$b) {
  return strcmp(to_lower_and_without_tildes($a), to_lower_and_without_tildes($b));
}

$array1 = array("a" => "gréen", "red", "blue");
$array2 = array("b" => "green", "yellow", "red");
$result = array_uintersect($array1, $array2,"compare_function");
print_r($result);

output:

Array
(
    [a] => gréen
    [0] => red
)

Upvotes: 7

hindmost
hindmost

Reputation: 7205

$result = array_intersect(array_map('strtolower', $array1), array_map('strtolower', $array2));

Upvotes: 17

Related Questions