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

microtime

Logo peckphp/peck peckphp/peck
Supported Versions: PHP 4, PHP 5, PHP 7, PHP 8
Return current Unix timestamp with microseconds
<?php microtime(bool $as_float = false): string|float
<?php     protected function execute(InputInterface $input, OutputInterface $output): int

    {

        $start = microtime(true);



        renderUsing($output);
src/Console/Commands/CheckCommand.php
<?php     private function getDuration(float $startTime): string

    {

        return number_format(microtime(true) - $startTime, 2);

    }
src/Console/Commands/CheckCommand.php