I’m working with an API that generates a token that I use for subsequent requests that is valid for 15 minutes. I’m storing a timestamp when the token is first generated and adding 15 minutes to this and storing that as a session variable like this: When I make a subsequent call to the API I’…
Tag: timestamp
Select a record when the timestamp has passed by a certain amount of time MYSQL/PHP
I’m trying to select sessions that are younger than 6 hours old with this query like so: The problem is that the query condition is always false and never manages to find the sessions even when a record actually has a timeStamp of a few seconds ago. obviously I am very sure that the problem is in the co…
PHP: Get timestamp from date format YYYY-MM-DD HH:MM:SS GMT+HH:MM
I’m reading lines from a *.txt file and get strings (date formats) in this style: With the function DateTime::createFromFormat, I want to convert such lines into a time string. After that, I would like to get the timestamp with getTimestamp();. So, currently my code looks like this ($date is my read lin…
Add minutes to time based on current time
I am trying to figure out a way to change a value based on current time, currently I am using the following code to add certain minutes the time the order is placed. which is working fine (except for $minutes_to_add = 170 is only adding only 30 minutes to the current time for some reason but I am living with
Symfony – set entity field as timestamp
In my Symofny project I want for my entity to have timestamp field. I want to be saved in timestamp format? How can I accomplish that? Like // => 1387909800 I am on Symfony 4.3 version. Answer Try getTimestamp();
Php check if 24hours has passed in a specific timezone
I want to check if 24hour has passed from the time a token is generated. When I create a token I save the current timestamp and check if the timestamp is valid before making use of the token, I have tried below code but none worked, it keeps showing that token is valid even when the timestamp is more than
Convert timestamp with dots in PHP (“yyyy.mm.dd hh:nn:ss.zzz”)
I’m trying to convert strings with hungarian datetime format, but no success because of the dot-separators: Isn’t it possible without “string-replace” like this: strtotime(preg_replace(“/([0-9]{4}).([0-9]{2}).([0-9]{2})/”,’${1}-${2}-${3}’,$xml->delivery_time)…
SELECT timestamp MATCH DAY 25 or 26
I am trying to get all timestamps from the Database, that match the day of the month that are specifyed. All i have is the day numbers(25, 26, 27 ect.) and not a full date strings(25/12/2018, 26/12/…
Datetime to Timestamp in milliseconds in PHP
I would like to create a timestamp in milliseconds from the input ‘2016-03-22 14:30’. Also the timezone specified should be Australia/Sydney. I’ve tried different approaches but none seem to be working. Can anyone help me please? I’m really struggling with that. Answer Pretty self expl…
How to get timestamp in ISO 8601 format with timezone in php
Based on the wix documentation, 2014-04-16T11:16:27.930Z is a timestamp in ISO 8601 format with a timezone. A quick research reveals that the timestamp in ISO 8601 displays the timezone with +…