6) { $timestamp = \str_replace('.' . $subSeconds, '.' . \substr($subSeconds, 0, 6), $timestamp); } $dt = new \DateTimeImmutable($timestamp); $nanos = $this->convertFractionToNanoSeconds($subSeconds); return [$dt, $nanos]; } /** * Create a DateTimeImmutable instance from a UNIX timestamp (i.e. seconds since epoch). * * @param int $seconds The unix timestamp. * @return \DateTimeImmutable */ private function createDateTimeFromSeconds($seconds) { return \DateTimeImmutable::createFromFormat('U', (string) $seconds, new \DateTimeZone('UTC')); } /** * Create a Timestamp string in an API-compatible format. * * @param \DateTimeInterface $dateTime The date time object. * @param int|null $ns The number of nanoseconds. If null, subseconds from * $dateTime will be used instead. * @return string */ private function formatTimeAsString(\DateTimeInterface $dateTime, $ns) { $dateTime = $dateTime->setTimeZone(new \DateTimeZone('UTC')); if ($ns === null) { return $dateTime->format(Timestamp::FORMAT); } else { return \sprintf($dateTime->format(Timestamp::FORMAT_INTERPOLATE), $this->convertNanoSecondsToFraction($ns)); } } /** * Format a timestamp for the API with nanosecond precision. * * @param \DateTimeInterface $dateTime The date time object. * @param int|null $ns The number of nanoseconds. If null, subseconds from * $dateTime will be used instead. * @return array */ private function formatTimeAsArray(\DateTimeInterface $dateTime, $ns) { if ($ns === null) { $ns = $dateTime->format('u'); } return ['seconds' => (int) $dateTime->format('U'), 'nanos' => (int) $ns]; } /** * Convert subseconds, expressed as a decimal to nanoseconds. * * @param int|string $subseconds Provide value as a whole number (i.e. * provide 0.1 as 1). * @return int */ private function convertFractionToNanoSeconds($subseconds) { return (int) \str_pad($subseconds, 9, '0', \STR_PAD_RIGHT); } /** * Convert nanoseconds to subseconds. * * Note that result should be used as a fraction of one second, but is * given as an integer. * * @param int|string $nanos * @param bool $rpad Whether to right-pad to 6 or 9 digits. **Defaults to** * `true`. * @return string */ private function convertNanoSecondsToFraction($nanos, $rpad = \true) { $nanos = (string) $nanos; $res = \str_pad($nanos, 9, '0', \STR_PAD_LEFT); if (\substr($res, 6, 3) === '000') { $res = \substr($res, 0, 6); } if (!$rpad) { $res = \rtrim($res, '0'); } return $res; } }