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->start = microtime(true);



        $this->queries[++$this->currentQuery] = [

            'sql' => $sql,
<?php             return;

        }



        $this->queries[$this->currentQuery]['executionMS'] = microtime(true) - $this->start;

    }

}
<?php         $connection = $this->driver->connect($parameters);



        $hash    = microtime(true); // required to identify the record in the results uniquely

        $sql     = sprintf('SELECT * FROM pg_stat_activity WHERE %d = %d', $hash, $hash);

        $records = $connection->query($sql)->fetchAllAssociative();