3v4l.org

run code in 300+ PHP versions simultaneously
<?php $filename1 = "[Study] - Walton, Charles E - 01-02-2012.txt"; $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 $matches; } print_r (validate_date($filename3)); //print_r (validate_date($filename2));
Output for git.master, git.master_jit, rfc.property-hooks
Warning: Undefined array key 2 in /in/JOaCr on line 10 Deprecated: explode(): Passing null to parameter #2 ($string) of type string is deprecated in /in/JOaCr on line 10 Warning: Undefined array key 0 in /in/JOaCr on line 11 Deprecated: str_pad(): Passing null to parameter #1 ($string) of type string is deprecated in /in/JOaCr on line 11 Warning: Undefined array key 1 in /in/JOaCr on line 12 Deprecated: str_pad(): Passing null to parameter #1 ($string) of type string is deprecated in /in/JOaCr on line 12 Warning: Undefined array key 2 in /in/JOaCr on line 13 Warning: Undefined array key 1 in /in/JOaCr on line 20 Warning: Undefined array key 3 in /in/JOaCr on line 20 Array ( )

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:
37.15 ms | 402 KiB | 8 Q