3v4l.org

run code in 300+ PHP versions simultaneously
<?php $where = [ 'id' => [12,13,14], 'date'=>['1999-06-12','2000-03-21','2006-09-31'] ]; var_export(array_map(null, ...array_values($where)));
Output for 7.1.0 - 7.1.33, 7.2.0 - 7.2.34, 7.3.0 - 7.3.33, 7.4.0 - 7.4.33, 8.0.0 - 8.0.30, 8.1.0 - 8.1.30, 8.2.0 - 8.2.25, 8.3.0 - 8.3.13
array ( 0 => array ( 0 => 12, 1 => '1999-06-12', ), 1 => array ( 0 => 13, 1 => '2000-03-21', ), 2 => array ( 0 => 14, 1 => '2006-09-31', ), )

preferences:
61.65 ms | 407 KiB | 5 Q