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"; 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($filename1)); print_r (validate_date($filename2));
Output for git.master, git.master_jit, rfc.property-hooks
Warning: A non-numeric value encountered in /in/ik33Q on line 17 Array ( [0] => [Study] - Walton, Charles E - 01-02-2012.txt [1] => [Study] - Walton, Charles E - [2] => 01-02-2012 [3] => .txt ) Warning: A non-numeric value encountered in /in/ik33Q on line 17 Array ( [0] => [Rx] - 01-02-2003 - Walton, Charles E.pdf [1] => [Rx] - [2] => 01-02-2003 [3] => - Walton, Charles E.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:
63.77 ms | 401 KiB | 8 Q