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     {

        return $this->fluentlyGetOrSet('id')

            ->getter(function ($id) {

                return $this->id = $id ?: str_replace(',', '.', microtime(true));

            })

            ->args(func_get_args());

    }
<?php                 $quote = $matches[1];

                $url = $matches[2];



                $parameter = 't='.(microtime(true) * 10000);



                if (Str::contains($url, '?')) {

                    $url = str_replace('?', "?$parameter&", $url);
<?php     private function markStartQueryTime()

    {

        $this->query_start_time = microtime(true);

    }
<?php     private function markEndQueryTime()

    {

        $this->query_end_time = microtime(true);



        return $this->getQueryTime();

    }
<?php     public function startTimer()

    {

        $this->startTime = microtime(true);



        return $this;

    }
<?php         }



        Cache::forever('stache::timing', [

            'time' => floor((microtime(true) - $this->startTime) * 1000),

            'date' => Carbon::now()->timestamp,

        ]);
<?php     public static function renderTag(Parser $parser, $name, $parameters = [], $content = '', $context = [])

    {

        $tag_measure = 'tag_'.$name.microtime();

        debugbar()->startMeasure($tag_measure, 'Tag: '.$name);