Open BitPoet opened 6 years ago
The strptime function isn't implemented in PHP on Windows, so the plugin fails to work there. A platform independent replacement would be:
static function dateToTimestamp($dateString) { $a = date_create_from_format('Y-m-d H:i:s', $dateString); return $a->getTimestamp(); }
Thanks! Will fix.
The strptime function isn't implemented in PHP on Windows, so the plugin fails to work there. A platform independent replacement would be: