deanmoses / zenphoto-json-rest-api

Rest API for Zenphoto
GNU General Public License v2.0
9 stars 1 forks source link

Replace strptime for Windows compatibility #14

Open BitPoet opened 6 years ago

BitPoet commented 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();
    }
deanmoses commented 6 years ago

Thanks! Will fix.