unix

The unix operation converts a given date into a Unix timestamp — the number of seconds elapsed since January 1, 1970 (UTC).

How it works

  • If the input is a valid date, the operation returns the corresponding Unix timestamp.
  • If the input cannot be interpreted as a valid date, the operation returns the original value unchanged.

Examples

InputOutput
2024-12-251735084800
01/01/19700
2025-03-01 12:001740830400
invalid-dateinvalid-date (unchanged)

Usage in PalDock

Use unix when you need to:

  • Normalize date fields into numeric timestamps.
  • Pass dates to APIs that expect Unix time instead of formatted strings.
  • Compare dates numerically (e.g. before/after checks).

Best Practices

  • Always ensure the date is in a recognizable format (e.g. ISO 8601: YYYY-MM-DD or YYYY-MM-DD hh:mm:ss).
  • Remember that the Unix timestamp is calculated in UTC.
  • Use unix together with date formatting or modify-date operations when you need to shift or reformat dates.

Insights that
helps you grow

  • Platform Pick 12: Rollout
    As you approach the official rollout of your affiliate platform, it’s time to take a step back and make sure everything is in place. A…
  • Platform Pick 11: Integrate and Test it
    When it comes to affiliate marketing, tracking clicks and leads is key to making sure you’re paying affiliates correctly and measuring success. But it’s not…
  • Platform Pick 10: Business, Legal, and IT Prep
    Now that you’ve narrowed down your platform choice, it’s time to make sure everything checks out from a business, legal, and technical perspective. This step…