Tagged Questions
4
votes
3answers
299 views
php program to find the my birthday where day name “Monday” for another 100 years
I was born in 1986-04-21, which is Monday. My next birthday with day name "Monday" is 1997-04-21 and so on.
I wrote the program to find upto 100 year to find which year my birthday comes with ...
2
votes
3answers
758 views
Next business day of given date in PHP
Does anyone have a PHP code to calculate next business day of given date?
And also how does for example YYYY-MM-DD need to be converted to find out next business day.
Example:
For 03.04.2011 ...
2
votes
5answers
882 views
Getting the day from a Unix timestamp (PHP)
How do I get the day (1-7) from a Unix timestamp in PHP? I also need the day date (1-31) and month (1-12).
1
vote
3answers
166 views
How to find earliest upcoming date given a list of weekdays?
Dates in PHP are a nightmare for me so please help me out fellow coders... I want to notify customers about the day their order will be delivered. It works like this:
I have 2 shipping zones, A & ...
1
vote
3answers
116 views
Getting first day of every week in 6 months
I'm trying to figure out how can I get the the first day of week for the last 6 months and can't get to a working solution.
If I write date("Y-m-d 00:00:00", strtotime("-1 week", date("Y-m-d")); It ...
1
vote
2answers
1k views
php extract year/month/day/hour/minute/seconds from a date
if i have a date and i want to extract the year, the month, etc in PHP5, how should i proceed?
if i do
$y = date('Y',$sale->end);
it doesn't work...
0
votes
2answers
82 views
Bash.org Quote Of The Day
So i've been working on my website in which i'd like to add a random quote each time the page is loaded from bash.org, i Kinda got it working but i was thinking about using "preg_replace" instead of ...
0
votes
1answer
136 views
Show last 7 days without week-end days (php)
I need to show last seven day in a select box but without week end day, in php
my code
for($time=0; $time<(86400*14); $time+=86400)
{
?> <option value="<?php echo ...
0
votes
3answers
159 views
How can I get the timestamp for a given day of week?
Basically, I have this requirement to convert a present/future weekday to a timestamp.
Example:
today = Thu, 24 Feb 2010
weekday = Tue
next date = Tue, 1 Mar 2010
cur stamp = 1267016400
new ...
0
votes
2answers
925 views
PHP 'end date' from a given 'start date' - last day/15th of the following month
I'd like to get an 'end date' from a given 'start date' in PHP. End date is based off the start and are calculated as follows:
If Start date is from the 1-15th of the month, End date is the 15th of ...