Top "Datetime-format" questions

datetime-format is a transformation of a timestamp from an industry standard format, such as UTC or ISO, to a format which conforms to the standards of a particular locale or audience

DateTime::format and strftime

I have $date = $run['at']; which gives me 2013-06-03T16:52:24Z (from a JSON input). To transform it to …

php datetime time datetime-format strftime
Get original pattern String given a JDK 8 DateTimeFormatter?

Related to my question here - how do I get the original pattern String given a DateTimeFormatter?

java java-8 datetime-format java-time
how to achieve timespan to string conversion?

I tried searching here, but it couldn't help me much .. I want to convert time_span to string, I don't …

c# string timespan datetime-format
What is the Z ending on date strings like 2014-01-01T00:00:00.588Z

Im doing a fetch to get a date from a database in java (the date should always be 2014-01-01…

java date datetime datetime-format
How to set format for datetime and date in sonata admin filters symfony2

How to set the datetime or date filters in sonata admin datagridfilters? I want to do the following for the …

symfony datetime-format sonata-admin
What does DateTimeStyles.RoundtripKind enumeration mean?

I was reading into answerer's post here where I ran into this enumeration value DateTimeStyles.RoundtripKind which I'm trying to …

c# .net datetime datetime-format
Java 8 DateTimeFormatter: confusion with 'z' and 'Z ' pattern letters

I have the date string "2015-01-12T13:00:00.000+02:00". Looking at the JavaDoc I see the following: z time-zone name zone-name …

java datetime-format zoneddatetime
How to serialize and deserialize Java 8's java.time types with Gson?

I'm using GSON to serialise some object graphs to JSON. These objects graphs use the new Java 8 java.time entities (…

java gson datetime-format java-8
DateTimeFormatter Accepting Multiple Dates and Converting to One (java.time library)

I am trying to write a DateTimeFormatter that will allow me to take in multiple different String formats, and then …

java datetime datetime-format java-time datetime-parsing
How to format LocalDate to ISO 8601 with T and Z?

I'm trying to generate a random date and time, and convert it to the "yyyy-MM-dd'T'HH:mm:ss'Z'" format. Here is …

java datetime datetime-format localdate datetimeformatter