3v4l.org

run code in 300+ PHP versions simultaneously
<?php $appt_notes = "Packet emailed 09-26-2014 14:21:47"; preg_match_all("/packet (e{0,1}mailed) (\d{2,4}-\d{2}-\d{2,4})/i",$appt_notes,$matches,PREG_SET_ORDER); if (!empty($matches)) { $packet_sentby = $matches[count($matches)-1][1]; if (preg_match("/^\d{4}/",$matches[count($matches)-1][2])) { $packet_date = date('m-d',strtotime($matches[count($matches)-1][2])); } else { $packet_date = date_format(date_create_from_format('m-d-Y',$matches[count($matches)-1][2]),'m-d'); } } else { $packet_sentby = ""; $packet_date = ""; } echo "Notes = $appt_notes <br>\n<br>\n"; echo $packet_sentby . "<br>\n" . $packet_date; echo "<hr>\n"; print_r($matches); ?>
Output for git.master, git.master_jit, rfc.property-hooks
Notes = Packet emailed 09-26-2014 14:21:47 <br> <br> emailed<br> 09-26<hr> Array ( [0] => Array ( [0] => Packet emailed 09-26-2014 [1] => emailed [2] => 09-26-2014 ) )

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