3v4l.org

run code in 300+ PHP versions simultaneously
<?php function getClosest($search, $arr) { $closest = null; foreach ($arr as $item) { if ($closest === null || abs($search - $closest) > abs($item - $search)) { $closest = $item; } } return $closest; } $days = array ('monday','wednesday','saturday'); for($i=0; $i<sizeof($days);$i++){ $d[$i]=strtotime($days[$i]); } print_r($d); die();
Output for git.master, git.master_jit, rfc.property-hooks
Array ( [0] => 1451862000 [1] => 1451430000 [2] => 1451689200 )

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:
51.62 ms | 401 KiB | 8 Q