Michael,
About three am I woke up with this same basic thought in my head.. On Tue, Jul 29, 2014 at 5:02 AM, Michael Wallner <mike@xxxxxxx> wrote:
On 29/07/14 02:45, Jeff Silberberg wrote:You have to format it as postgresql array string, so that it can be
> echo "User Keys " . gettype($userKey)."<br>\n"; confirms this is
> a Array .. An I have tried casting $1::int[] in the prepare with no
> luck..
>
parsed as array by the server, e.g: '{1,2,3}'::int[]
So, assuming they keys are integers:
$userKey = "{".implode(",",array_map("intval", $userKey))."}::int[]";
--
Regards,
Mike