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]; $packet_date = date('m-d',strtotime($matches[count($matches)-1][2])); } 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
Warning: preg_match_all(): Compilation failed: missing closing parenthesis at offset 46 in /in/E6Q8o on line 4 Notes = Packet emailed 09-26-2014 14:21:47 <br> <br> <br> <hr>

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