Tagged Questions
The days tag has no wiki summary.
7
votes
4answers
13k views
Increase days to php current Date()
How do I add a certain number of days to the current date in PHP?
I already got the current date with:
$today = date('y:m:d');
Just need to add x number of days to it
5
votes
5answers
529 views
Special days of the year for programmers? [closed]
What days of the years should I know about as a programmer?
As Pi Day just passed, I was wondering if there are any other days relevant to programmers.
This is a good place to list them all...
4
votes
2answers
155 views
How to get total day count in a month
I want to find a total days per month group by days.
For Example
Month is '01/2011' (mm/yyyy)
Expected Output
Sunday - 5
Monday - 5
Tuesday - 5
Wednesday - 4
Thursday - 4
Friday - 4
Saturday - 4
...
4
votes
6answers
3k views
Algorithm to add or subtract days from a date?
I'm trying to write a Date class in an attempt to learn C++.
I'm trying to find an algorithm to add or subtract days to a date, where Day starts from 1 and Month starts from 1. It's proving to be ...
4
votes
2answers
2k views
How to get the number of days in a given month in Ruby, accounting for year?
I'm sure there's a good simple elegant one-liner in Ruby to give you the number of days in a given month, accounting for year, such as "February 1997". What is it?
4
votes
6answers
4k views
How can I calculate the number of days between two dates in Perl?
Heylo,
I want to calculate (using the default Perl installation only) the number of days between two dates. The format of both the dates are like so 04-MAY-09. (DD-MMM-YY)
I couldn't find any ...
3
votes
4answers
375 views
SQL calculate number of days of residency by month, by user, by location
I'm working on a query for a rehab organization where tenants (client/patients) live in a building when they first arrive, as they progress in their treatment they move to another building and as they ...
3
votes
1answer
296 views
Simple custom range in Ruby
I have a Rails named_scope which is using a condition to pull specific days of the week from the table like so:
:conditions => [ 'EXTRACT(DOW FROM bookdate) IN (?)', (1..6).to_a ]
The 1..6 date ...
2
votes
4answers
311 views
Add days to current date from MySQL with PHP
I have a fixed date from MySql
startDate = 07/03/2011
I wanted to add 60 days on top this date to have an endDate.
$startDate = $result['startDate'];
$endDate = ??? + strtotime("+60 days");
echo ...
2
votes
3answers
468 views
Flex 4 DateChooser
I have an Array of days. I want those days to have a different background-color in the DateChooser component, say red.
How can I do that please?
2
votes
5answers
7k views
How to get year, month, day, hours, minutes, seconds and milliseconds of the current moment in Java?
I would like to have them as strings.
2
votes
1answer
967 views
How can I compare two dates, return a number of days
how can I compare two dates return number of days.
Ex: Missing X days of the Cup.
look my code.
NSDateFormatter *df = [[NSDateFormatter alloc]init];
[df setDateFormat:@"d MMMM,yyyy"];
...
2
votes
2answers
717 views
Java days of week calculation
I have an Enum for Days of week (with Everyday, weekend and weekdays) as follows where each entry has an int value.
public enum DaysOfWeek {
Everyday(127),
Weekend(65),
Weekdays(62),
...
2
votes
1answer
1k views
How can I use Jquery Datepicker to highlight with befereshowday two different kind of special dates?
I mean, I found here a way to disable an array of nationalDays.
I'm trying to make a code to disable the national days and also to highlight some other days (I'm coding a web app and I will pass ...
1
vote
4answers
43 views
Actual days between two unix timestamps in PHP
No this is not the standard +86400 seconds between dates.
$start_time = strtotime("2012-01-15 23:59");
$end_time = strtotime("2012-01-16 00:05");
$daysInBetweenTimestamps = ?
That is the problem ...
1
vote
4answers
55 views
Day number of the year: date('z') + 1; (1..366) in (001..366) format
How to display the day of the year in 3 digits format so that January 1st is not "1", but "001"?
I'm curious as to whether such a function is implemented (something like date('zzz') ) or not, so I ...
1
vote
3answers
71 views
Generate days in month based on month
I'm wondering if anyone has an elegant solution for generating days based on a month selected for use in a dropdown. What i'm wanting to do is for the user to select the month, then populate a ...
1
vote
1answer
100 views
Joda time - all mondays between two dates
I am using Joda time api in a Spring 3.0 project for the very first time. Now I have a start and end date and I want to get the date for all mondays between these two dates. How can I do this ?
I ...
1
vote
1answer
104 views
Date to Day conversion in Java
I am able to convert date to days using the below code.
SimpleDateFormat sfd = new SimpleDateFormat("yyyy-MM-dd");
String s1 = sfd.format(dateObj);
String a1 [] = s1.split("-");
int year = ...
1
vote
2answers
204 views
subset data for a day if data between two hours of the day meets criteria?
I’m fairly new to R and it would be great if you could help out with this problem as i havent been able to find any answers to this problem online.
This is part of my data frame (DF) (it goes on until ...
1
vote
2answers
457 views
Adding days to named parameter of type Date in HQL
I've got an oracle database in which warehouses are stored that are open only on one given day in a week, e.g. 'monday' or 'thursday'.
The day the warehouse is open is stored as an integer. Sunday ...
1
vote
2answers
218 views
django days-of-week representation in model
I have this "Jobs Server" model that i'm building. I want to include a field that will save which days of the week this job will run on. Ultimately in the UI, i would like the user to be able to ...
1
vote
2answers
74 views
Display days in TimeSeriesChart
How can I display the names of the days ("Sunday, Monday....") on the time axis, instead of just the date ?
1
vote
1answer
107 views
How do I show hours instead of days for an interval in PostgreSQL?
One of my queries is returning the below interval. Istead of showing 6 days, I would like to show 6 x 24 + 19 hours. I would rather not convert to epoch using the extract (epoch from ...) operator. Is ...
1
vote
3answers
185 views
PHP get 31 days distance from starting date
How can I get what date it will be after 31 days starting with $startDate, where $startDate is a string of this format: YYYYMMDD.
Thank you.
1
vote
1answer
229 views
PHP iterate days of month given month and year
How can I print (echo) the days of an unknown month if month and year are parameters?
Thank you.
1
vote
2answers
503 views
finding numbers of days between two date to make a dynamic columns
Dear all, I have a select query that currently produces the following results:
DoctorName Team 1 2 3 4 5 6 7 ... 31 Visited
dr. As A ...
1
vote
4answers
756 views
How to use DATEDIFF? How many days are inside of two dates
How to use DATEDIFF? How can I make this to work? or should I use DATEDIFF completly differently?
SELECT DATEDIFF('Started ','will_end') AS 'Duration' FROM my_table WHERE id = '110';
I try to get ...
0
votes
6answers
95 views
unable to get difference of days between two dates in java
I want to calculate the difference of days between two dates. My code works fine when the year of the date does not change, but when I calculate the difference between two dates like so: (13/01/2012 ...
0
votes
0answers
47 views
excel vba: distribution of days
I have the following problem. An excel sheet contains working days for different activities for a period of a project of a worker. The added sum of all activities in one month is the monthly sum for ...
0
votes
1answer
73 views
Javascript to calculate days since certain date [closed]
Possible Duplicate:
How do I get the number of days between two dates in jQuery?
How to calculate the number of days between two dates using javascript
So basically i need to calculate ...
0
votes
2answers
76 views
Counting dates on Android
Well i'm currently building an app for android and i need to store a day and count how many days until that day comes.
I store the day on shared prefs. First i initialize the calendars.
...
0
votes
2answers
145 views
Android: How to calculate a date some days ago?
Ok, i get the todays date like this,
final Calendar cal = Calendar.getInstance();{
mYear = cal.get(Calendar.YEAR);
mMonth = cal.get(Calendar.MONTH);
mDay = ...
0
votes
3answers
59 views
Oracle SQL Return all records within days of date
I am hoping that somebody can help me out with this question.
The following SQL returns just the records in a given table that are specifically 20 days from current.
Last_Mod_Date = TO_DATE(SYSDATE ...
0
votes
3answers
132 views
Calculate number of days remaining
I would like to calculate the number of days remaining before a date. In my database I have a timestamp corresponding to the end date. For example Friday 30. I would like to say something like that :
...
0
votes
2answers
276 views
Android Calendar class month's day-length setting problem
I am trying to define Jalali Calendar using java Calendar class.
The problem comes when I set a jalali date like this:
Calendar jCal = Calendar.getInstance();
jCal.set(1390, 1, 31); //Current year ...
0
votes
1answer
210 views
Is there any way to add a calendar view to an iOS app? [closed]
Possible Duplicate:
Month view calendar iphone app control for iOS
Just like this one or something similar. I need to be able to select a date from it by touching a day.
0
votes
3answers
114 views
Past textual date to days (since) PHP
Hey guys,
how does one calculate the days past since a date like the one Twitter outputs in its API
eg:
Mon Jul 12 00:27:26 +0000 2010
to XXX
Can we do it with strtotime
Thanks guys,
Dex
0
votes
2answers
66 views
Timeword - compress an array of days and represent it as a set of ranges
I am trying to make a function that will take this input:
mon,tue,wed,thu,fri,sat
and spit out this:
mon-sat
At the moment, i'm using this.
function dayrange($days){
$days = explode(",", ...
0
votes
4answers
152 views
mysql grouping by days
i have this scheme:
+-------+
|posts: |
+----+--+--------+--------------------+
| ID | title | timestamp |
+----+-----------+--------------------+
| 1 | t1 |2011-04-05 17:54:55 |
...
0
votes
3answers
149 views
Java: convert birth data to days
I really need some help with the specific assignment. The user inputs birth data (YYYY MM DD) and the program tells you how old you are in days :
The outprint in console would be
You are for ...
0
votes
2answers
121 views
Create an array of business days
I need a method for creating an array of "business days" in PHP beteewn 2 dates.
For example:
getWorkingDays("2008-01-01","2009-06-30");
Will create an array like the following:
Array
(
[0] ...
0
votes
4answers
497 views
Casio - Basic programming
It's a bit urgent... ;)
Someone i know have a Casio calculator (FX-9750 / Grahp35+).
There is in the menu a functionnality TVM with "Days Calculation" that permits to know the number of days between ...
0
votes
5answers
250 views
Start and End Date difference in php
I will ask the user to enter start date and end date. I would want to get all of the dates from start to end and get the number of days between those dates. How can I do this in PHP given start and ...
0
votes
6answers
641 views
How to Add jQuery UI DatePicker Button TRIGGER SCRIPT
11/26/10
Greetings Everyone;
I'm a newbie at this so please bear with me... :)
I have a working jQuery UI DatePicker script that only
displays WED & SAT (see MAISCRIPT BELOW).
I also have a ...
0
votes
1answer
108 views
How can I pick from two ranges of dates with datepicker in jQuery?
I am using the jQuery Datepicker(http://keith-wood.name/datepick.html). I am trying to let the user pick a date from two separate ranges of days. I can't find that feature in the documentation and I ...
0
votes
6answers
318 views
Convert dates to hours
I'm trying to work with dates for the first time, I did it something about that with Flash but it's different.
I have two different dates and I'd like to see the difference in hours and days with ...
0
votes
2answers
995 views
Mysql get count of rows for each day
My Current query is:
SELECT DISTINCT DATE(vote_timestamp) AS Date, COUNT(*) AS TotalVotes FROM `votes`
WHERE vote_target_id='83031'
GROUP BY DATE(vote_timestamp) ORDER BY DATE(vote_timestamp) DESC ...
-1
votes
1answer
73 views
What's up with this date?
Why between those dates i get 5,9.... and if i use another year i get 6 ???? It only happens with march and 2008... why is there an hour difference ???
<?php
$from = '2008-03-04';
$to = ...
-2
votes
2answers
96 views
PHP Count Days - From one date to present [closed]
Possible Duplicate:
calculating days
How can I count days starting from a STARTDATE (The startdate is in UNIX) to now?
Example from "1313173870" till today.
Thanks.