Comparaison de tableau en PHP - PHP - Programmation
Marsh Posté le 15-01-2003 à 16:23:11
Bonjour, j'ai 2 tableaux : $array1 = array (1,2,3,4,5,8,9); $array2 = array (2,4,6,5); comment faire pour obtenir un tableau qui contient : 2 - 4 - 5 valeurs communes aux 2 tableaux. Merci. Boz.
Marsh Posté le 15-01-2003 à 16:40:46
tente ça : http://www.php.net/manual/en/funct [...] ersect.php
Marsh Posté le 15-01-2003 à 17:44:54
OK ! Ca marche. Merci.
Make sure you enter the(*)required information where indicate.HTML code is not allowed
Marsh Posté le 15-01-2003 à 16:23:11
Bonjour,
j'ai 2 tableaux :
$array1 = array (1,2,3,4,5,8,9);
$array2 = array (2,4,6,5);
comment faire pour obtenir un tableau
qui contient :
2 - 4 - 5
valeurs communes aux 2 tableaux.
Merci.
Boz.