Logo

Date/Time Functions

checkdate date date_add date_create date_create_from_format date_create_immutable date_create_immutable_from_format date_date_set date_default_timezone_get date_default_timezone_set date_diff date_format date_get_last_errors date_interval_create_from_date_string date_interval_format date_isodate_set date_modify date_offset_get date_parse date_parse_from_format date_sub date_sun_info date_sunrise date_sunset date_time_set date_timestamp_get date_timestamp_set date_timezone_get date_timezone_set getdate gettimeofday gmdate gmmktime gmstrftime idate localtime microtime mktime strftime strptime strtotime time timezone_abbreviations_list timezone_identifiers_list timezone_location_get timezone_name_from_abbr timezone_name_get timezone_offset_get timezone_open timezone_transitions_get timezone_version_get

strtotime

Logo statamic/cms statamic/cms
Supported Versions: PHP 4, PHP 5, PHP 7, PHP 8
Parse about any English textual datetime description into a Unix timestamp
<?php strtotime(string $datetime, ?int $baseTimestamp = null): int|false
<?php         ];



        if ($last_modified = $response->getHeader('Last-Modified')) {

            $last_modified = strtotime(reset($last_modified));



            if ($last_modified !== false) {

                $metadata['timestamp'] = $last_modified;
src/Imaging/GuzzleAdapter.php