Questions tagged as 'data'

3
answers

Records with recurring dates filtered by a period

The Problem I am creating a financial system where I need to register a recurring movement, such as a light bill that repeats itself every month. In the system, this type of transaction is treated as a fixed expense / revenue. My table has...
asked by 28.08.2014 / 07:33
4
answers

How to create a list of dates of the year in php, skipping the weekends?

I need to create a list of dates in PHP, where I will list all dates, from the first day of the year to the last. However, in that list, dates for the weekend (Saturday and Sunday) should be skipped. Example: 01/02/2016 => Segunda 02/02/...
asked by 04.02.2016 / 13:27
4
answers

Convert month number to name

I need to convert the number of the month to the name of the same, but it has to be in Portuguese (and preferably without the need of substr ) I can do this, with the default language in English $monthNum = 3; $dateObj = DateTime::...
asked by 17.06.2014 / 15:57
3
answers

How to format date in Javascript by putting name of the month and day of the week

Hello. Home Have this date: 05/18/17 . Home And I need to convert it to this: May 18th (Thurs) Home May: May, (Thurs): Thursday Home Does anyone know how I do this using JavaScript and jQuery?     
asked by 16.05.2017 / 20:08
1
answer

How to convert a date to this format in PHP?

Can anyone tell me what kind of date is this format? 2013-09-17T05:59:00+01:00 I have in the database a field of type timestamp or date. How to convert the value of it to this format using PHP?     
asked by 22.04.2015 / 16:55
2
answers

Format date return with Date format and no String

I'm trying to return a date that is recorded right in the bank (1986-04-30 17:02:00), I try to convert this date to appear only "04/30/1986", but it's no use. The most I get back is Wed Apr 30 00:00:00 BRT 1986. To create the list with Hib...
asked by 08.01.2017 / 20:39
2
answers

How to get Date in the format day, month, year and time with JQuery

I have a code snippet that I can get the date and time, but the date is in the format Mês/Dia/Ano followed by the time, but I need the format Dia/Mês/Ano followed by the time, I already tried to change the form but it was incorrect...
asked by 08.04.2015 / 14:57
1
answer

How can I get the current date and time in #R?

I am creating a process report from a routine, a simplified "logfile", and would like to store the date at the time of the error in a variable. What function does the current date and time result in #R?     
asked by 08.03.2016 / 09:55
1
answer

Algorithm - How to get the days in a week JS

I have the following situation: I need to set the days of each week within a month, creating an array of JSON objects. Each position would correspond to a week, for example if there were 5 weeks I would have an array of 5 positions, where eac...
asked by 12.05.2016 / 16:16
2
answers

Full return of Date type

How do I get this return? 2014-08-05 18: 29: 47.757 Using Date . Date data = new java.sql.Date(new java.util.Date().getTime()); Using this my return is only 2015-02-03 and does not return the hours. NOTE: I need to get...
asked by 03.02.2015 / 15:14