First transform the array into a list of values:
$values = "'" . implode("','", $array) . "'";
or if the column is of a numeric type:
$values = implode(',', $array);
Now, you can use it in your SQL statement:
SELECT "columns" FROM "table" WHERE "value" IN ($values)