This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* FuzzyDateParser is meerly a "convinience" wrapper around date_parse | |
* functionality from ext/date/lib/timelib code (which does all the | |
* scanning and other "fuzzy" guessing work). | |
* | |
* @see http://www.php.net/manual/en/function.date-parse.php | |
* @see http://stackoverflow.com/questions/15350309/heuristic-fuzzy-date-extraction-from-the-string | |
* | |
* by Yauhen Yakimovich, 2013 |