Search code examples
phpdatetimeunix-timestamp

Getting a unix timestamp using a specific date and time?


How can I get a unix timestamp for a date in the format "12:30 PM Thu Aug 5 2021"?


Solution

  • $timestamp = strtotime('1/1/2021 21:00');
    

    Replace 1/1/2021 21:00 to the desired date.