Sélectionnez des valeurs de MySQL en utilisant un tableau d'IDS PHP

$sql = 'SELECT * 
          FROM `table` 
         WHERE `id` IN (' . implode(',', array_map('intval', $array)) . ')';
Fantastic Ferret