3v4l.org

run code in 300+ PHP versions simultaneously
<?php function pdo_named_in_clause_from_array($array, $name = 'in') { $in = $data = array(); $i = 0; $name = preg_replace('/[^a-z0-9_]+/', '', (string)$name); if (!preg_match('/^[a-z]/i', $name)) { throw new \InvalidArgumentException('Placeholder name ' . $name . ': must begin with a letter'); } foreach ($array as $value) { $key = $name . $i++; $in[] = ':' . $key; $data[$key] = $value; } return array(implode(', ', $in), $data); } $inList = [1, 2, 3]; list($inClause, $inData) = pdo_named_in_clause_from_array($inList); $query = "UPDATE table SET value1 = :val1, value2 = :val2, WHERE id IN ($inClause)"; $data = array('val1' => 'Hello', 'val2' => 'World') + $inData; var_dump($query, $data); /* $stmt = $db->prepare($query); $stmt->execute($data); */
Output for git.master, git.master_jit, rfc.property-hooks
string(79) "UPDATE table SET value1 = :val1, value2 = :val2, WHERE id IN (:in0, :in1, :in2)" array(5) { ["val1"]=> string(5) "Hello" ["val2"]=> string(5) "World" ["in0"]=> int(1) ["in1"]=> int(2) ["in2"]=> int(3) }

This tab shows result from various feature-branches currently under review by the php developers. Contact me to have additional branches featured.

Active branches

Archived branches

Once feature-branches are merged or declined, they are no longer available. Their functionality (when merged) can be viewed from the main output page


preferences:
54.57 ms | 401 KiB | 8 Q