できるだけ多くの?
の配列を作成します 値があるので、それをクエリにスローします。
$placeholders = array_fill(0, count($thingArray), '?');
$sql = "SELECT thing FROM things WHERE thing_uid IN (" . implode(',', $placeholders) . ")";
できるだけ多くの?
の配列を作成します 値があるので、それをクエリにスローします。
$placeholders = array_fill(0, count($thingArray), '?');
$sql = "SELECT thing FROM things WHERE thing_uid IN (" . implode(',', $placeholders) . ")";