3v4l.org

run code in 300+ PHP versions simultaneously
<?php $filename1 = "Ruggeri, Nichole M. - 10-21-2014.pdf"; $filename2 = "[Rx] - 01-02-2003 - Walton, Charles E.pdf"; $filename3 = "9-29-2014.pdf"; function validate_date($filename) { preg_match("/(^\D*)(\d+-\d+-\d+)(\D*$)/",trim($filename),$matches); $date_arr = explode("-",$matches[2]); $month = str_pad($matches[0], 2, '0', STR_PAD_LEFT); $day = str_pad($matches[1], 2, '0', STR_PAD_LEFT); $year = $matches[2]; if ($year < 100) { if ($year > date("Y")+10) $year = $year + 1900; else $year = $year + 2000; } $date = $month . "-" . $day . "-" . $year; $filename = $matches[1] . $date . $matches[3]; return $filename; } echo validate_date($filename1); //print_r (validate_date($filename1)); //print_r (validate_date($filename2)); //print_r (validate_date($filename3)); ?>
Output for git.master, git.master_jit, rfc.property-hooks
Warning: A non-numeric value encountered in /in/6RYrV on line 17 Ruggeri, Nichole M. - Ruggeri, Nichole M. - 10-21-2014.pdf-Ruggeri, Nichole M. - -2010.pdf

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