# ivyforms/0.8/backend/src/Common/Helpers/DateTimeHelper/DateTimeHelper.php

The Innovative Form Builder – IvyForms, version 0.8. 248 lines.

- Page: https://pluginprobe.com/plugins/ivyforms/0.8/code/backend/src/Common/Helpers/DateTimeHelper/DateTimeHelper.php
- Raw: https://pluginprobe.com/plugins/ivyforms/0.8/raw/backend/src/Common/Helpers/DateTimeHelper/DateTimeHelper.php
- Modified: 2026-01-13T11:11:38+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/ivyforms/0.8/code/backend/src/Common/Helpers/DateTimeHelper/DateTimeHelper.php#L10-L20`.

```php
<?php

namespace IvyForms\Common\Helpers\DateTimeHelper;

// phpcs:disable PSR1.Files.SideEffects
if (!defined('ABSPATH')) {
    exit; // Exit if accessed directly
}
use DateTimeImmutable;
use DateTimeZone;
use Exception;
use RuntimeException;
use IvyForms\Services\Translations\BackendStrings;

/**
 * Helper utilities for date and time operations.
 */
class DateTimeHelper
{
    /**
     * Convert time string (HH:MM or HH:MM:SS) to Unix timestamp using current date in WP timezone.
     *
     * @param mixed $value Time value (HH:MM, HH:MM:SS, or numeric timestamp)
     * @return int|null Unix timestamp or null if invalid
     */
    public static function timeToTimestamp($value): ?int
    {
        if ($value === null || $value === '') {
            return null;
        }

        // If already numeric (timestamp), validate and return
        if (is_numeric($value)) {
            return (int)$value;
        }

        $timeString = trim((string)$value);
        return self::parseTimeStringToTimestamp($timeString);
    }

    /**
     * Parse time string (HH:MM or HH:MM:SS) to Unix timestamp.
     *
     * @param string $timeString Time string to parse
     * @return int|null Unix timestamp or null if invalid
     */
    private static function parseTimeStringToTimestamp(string $timeString): ?int
    {
        if (!preg_match('/^(\d{1,2}):(\d{2})(?::(\d{2}))?$/', $timeString, $matches)) {
            return null;
        }

        $hours = (int)$matches[1];
        $minutes = (int)$matches[2];
        $seconds = isset($matches[3]) ? (int)$matches[3] : 0;

        if (!self::isValidTimeComponents($hours, $minutes, $seconds)) {
            return null;
        }

        return self::createTimestampFromTime($hours, $minutes, $seconds);
    }

    /**
     * Validate time components.
     *
     * @param int $hours Hours (0-23)
     * @param int $minutes Minutes (0-59)
     * @param int $seconds Seconds (0-59)
     * @return bool True if valid
     */
    private static function isValidTimeComponents(int $hours, int $minutes, int $seconds): bool
    {
        return $hours <= 23 && $minutes <= 59 && $seconds <= 59;
    }

    /**
     * Create Unix timestamp from time components using today's date.
     *
     * @param int $hours Hours
     * @param int $minutes Minutes
     * @param int $seconds Seconds
     * @return int Unix timestamp
     * @throws RuntimeException If unable to create timestamp
     */
    private static function createTimestampFromTime(int $hours, int $minutes, int $seconds): int
    {
        try {
            $timezone = self::getWpTimezone();
            $today = new DateTimeImmutable('today', $timezone);
            $dateString = $today->format('Y-m-d');
            $timeString = sprintf('%02d:%02d:%02d', $hours, $minutes, $seconds);
            $dateTime = new DateTimeImmutable("$dateString $timeString", $timezone);
            return $dateTime->getTimestamp();
        } catch (\Throwable $exception) {
            throw new RuntimeException(
                BackendStrings::getExceptionStrings()['time_conversion_failed'] . ': ' . $exception->getMessage()
            );
        }
    }

    /**
     * Format Unix timestamp back to time string (HH:MM).
     *
     * @param int $timestamp Unix timestamp
     * @return string Formatted time string without seconds
     */
    public static function timestampToTime(int $timestamp): string
    {
        $timezone = self::getWpTimezone();
        $dateTime = new DateTimeImmutable('@' . $timestamp);
        $dateTime = $dateTime->setTimezone($timezone);
        return $dateTime->format('H:i');
    }

    /**
     * Format Unix timestamp back to time string with seconds (HH:MM:SS).
     *
     * @param int $timestamp Unix timestamp
     * @return string Formatted time string with seconds
     */
    public static function timestampToTimeWithSeconds(int $timestamp): string
    {
        $timezone = self::getWpTimezone();
        $dateTime = new DateTimeImmutable('@' . $timestamp);
        $dateTime = $dateTime->setTimezone($timezone);
        return $dateTime->format('H:i:s');
    }

    /**
     * Get WordPress timezone.
     *
     * @return DateTimeZone
     * @throws RuntimeException If unable to get valid timezone
     */
    public static function getWpTimezone(): DateTimeZone
    {
        if (!function_exists('wp_timezone')) {
            throw new RuntimeException(BackendStrings::getExceptionStrings()['wp_timezone_not_exist']);
        }

        return wp_timezone();
    }

    /**
     * Normalize time values to Unix timestamp format.
     *
     * @param int|string|null $value Field value
     * @return string Normalized value as string
     */
    public static function normalizeTimeValue($value): string
    {
        if ($value === null || $value === '') {
            return '';
        }

        return (string)(self::timeToTimestamp($value) ?? $value);
    }

    /**
     * Convert date string (YYYY-MM-DD or various formats) to Unix timestamp.
     *
     * @param mixed $value Date value (YYYY-MM-DD, or numeric timestamp)
     * @return int|null Unix timestamp or null if invalid
     */
    public static function dateToTimestamp($value): ?int
    {
        if ($value === null || $value === '') {
            return null;
        }

        // If already numeric (timestamp), validate and return
        if (is_numeric($value)) {
            return (int)$value;
        }

        $dateString = trim((string)$value);
        return self::parseDateStringToTimestamp($dateString);
    }

    /**
     * Parse date string to Unix timestamp.
     *
     * @param string $dateString Date string to parse
     * @return int|null Unix timestamp or null if invalid
     */
    public static function parseDateStringToTimestamp(string $dateString): ?int
    {
        try {
            $timezone = self::getWpTimezone();
            $dateTime = new DateTimeImmutable($dateString, $timezone);

            // Set time to midnight (00:00:00) for date-only values
            $dateTime = $dateTime->setTime(0, 0, 0);

            return $dateTime->getTimestamp();
        } catch (\Throwable $exception) {
            return null;
        }
    }

    /**
     * Format Unix timestamp back to date string (YYYY-MM-DD).
     *
     * @param int $timestamp Unix timestamp
     * @return string Formatted date string
     * @throws Exception
     */
    public static function timestampToDate(int $timestamp): string
    {
        $timezone = self::getWpTimezone();
        $dateTime = new DateTimeImmutable('@' . $timestamp);
        $dateTime = $dateTime->setTimezone($timezone);
        return $dateTime->format('Y-m-d');
    }

    /**
     * Format Unix timestamp to a custom date format.
     *
     * @param int $timestamp Unix timestamp
     * @param string $format PHP date format string
     * @return string Formatted date string
     * @throws Exception
     */
    public static function timestampToDateFormat(int $timestamp, string $format): string
    {
        $timezone = self::getWpTimezone();
        $dateTime = new DateTimeImmutable('@' . $timestamp);
        $dateTime = $dateTime->setTimezone($timezone);
        return $dateTime->format($format);
    }

    /**
     * Normalize date values to Unix timestamp format.
     *
     * @param int|string|null $value Field value
     * @return string Normalized value as string
     */
    public static function normalizeDateValue($value): string
    {
        if ($value === null || $value === '') {
            return '';
        }

        return (string)(self::dateToTimestamp($value) ?? $value);
    }
}

```
