Tagged Questions
16
votes
5answers
315 views
Slicing a time range into parts
First question. Be gentle.
I'm working on software that tracks technicians' time spent working on tasks. The software needs to be enhanced to recognize different billable rate multipliers based on ...
14
votes
6answers
585 views
Can you figure out this PHP timing issue?
Can anyone tell me why when I ran a script with the below contents and then stop it after 5 seconds that I need to divide the elapsed time by 2 to get the correct script execution time?
...
14
votes
3answers
29k views
How to get time difference in minutes in PHP
How to calculate minute difference between two date-times in PHP?
12
votes
7answers
5k views
PHP How to find the time elapsed since a date time?
How to find the time elapsed since a date time stamp like 2010-04-28 17:25:43, final out put text should be like xx Minutes Ago/xx Days Ago
12
votes
5answers
28k views
NOW() function in PHP
Is there any PHP function that returns time format as the MySQL fuction NOW()
I know how to do it using date() .. but I am asking if there is a function only for this.
e.g.
"2009-12-01 00:00:00"
11
votes
6answers
575 views
How to check is timezone identifier valid from code?
I'll try to explain what's the problem here.
According to list of supported timezones from PHP manual, I can see all valid TZ identifiers in PHP.
My first question is how to get that list from code ...
11
votes
4answers
3k views
Check whether the string is a unix timestamp
I have a string and I need to find out whether it is a unix timestamp or not, how can I do that effectively?
I found this thread via Google, but it doesn't come up with a very solid answer, I'm ...
10
votes
3answers
261 views
Methods for scheduling
Good afternoon,
I am working on a PHP application for an at home care company. They have x amount of carers that are scheduled every week to attend the houses of x amount of service users (clients). ...
10
votes
6answers
14k views
How to get Time Zone through IP Address in PHP
I want to get time zone through IP Address in PHP. Actually i have an application which will run at the client machine. I have IP address of client machine. But not able to get the time zone for each ...
9
votes
4answers
4k views
Parsing Twitter API Datestamp
I'm using the twitter API to return a list of status updates and the times they were created. It's returning the creation date in the following format:
Fri Apr 09 12:53:54 +0000 2010
What's the ...
8
votes
3answers
741 views
Php trapping maximun execution time error
Is there a way in PHP to trap the fatal error when the max execution time is reached and give the user a better message?
8
votes
7answers
4k views
Round minute down to nearest quarter hour
I need to round times down to the nearest quarter hour in PHP. The times are being pulled from a MySQL database from a datetime column and formatted like 2010-03-18 10:50:00.
Example:
10:50 needs to ...
8
votes
4answers
264 views
English to Time
Does anyone know of a good class / library to convert English representations of time into timestamps?
The goal is to convert natural language phrases such as "ten years from now" and "three weeks" ...
8
votes
7answers
10k views
php check for a valid date, weird date conversions
Is there a way to check to see if a date/time is valid you would think these would be easy to check:
$date = '0000-00-00';
$time = '00:00:00';
$dateTime = $date . ' ' . $time;
...
7
votes
2answers
81 views
time limit function execution in PHP or anything else
I could say that my question is related to PHP, but what I'm more concerned is proper logic of programming in situation where function execution can go on indefinitely.
What is the proper way of ...
7
votes
10answers
705 views
how long does it take to write software?
First as an intro, I am not technical! meaning I do not program :-) although I can and have provided a detailed requirement documant it "seems" to me that the programmers are taking too long to ...
6
votes
2answers
617 views
printing restaurant opening hours from a database table in human readable format using php
i have a table that lists the opening hours of restaurants. the columns are id, eateries_id, day_of_week, start_time, and end_time. each eatery is represented in the table multiple times because there ...
6
votes
4answers
450 views
Best way to design a scaleable hits/analytics system?
The company I work for creates applications for the Blackberry platform.
We've been working on a proprietary "analytics system" that allows us to embed code within our applications and have the ...
6
votes
3answers
340 views
Scheduling & DST
I am writing a calendar/scheduling app in PHP. Right now I take the day of the week you want the event to occur on and the time. I also ask for the timezone and adjust accordingly to get the event ...
6
votes
4answers
3k views
Dealing with PHP server and MySQL server in different time zones
For those of us who use standard shared hosting packages, such as GoDaddy or Network Solutions, how do you handle datetime conversions when your hosting server (PHP) and MySQL server are in different ...
5
votes
3answers
917 views
PHP to calculate the number of office hours between two dates
We run a service that's based on a 2 business day SLA, so if the request is submitted at 1pm on Monday it should be completed by 1pm of Wednesday.
So in the database I have two MySQL timestamps ...
5
votes
4answers
1k views
What's the best way to manage dates across PHP, MySQL, etc?
My server is in Dallas. I'm in New York City.. and both PHP and MySQL have configuration variables for setting the timezone.
How do I get them all to work together? What dates should I store in ...
4
votes
3answers
55 views
run code depending on the time of day
I need to echo some code or message on a page depending on the hour of the day. Just like a welcome message, "good evening", or "good afternoon"
I don't know hot to group certain hours and assign a ...
4
votes
3answers
107 views
PHP Time Filtering and MYSQL Filtering
I have 3 columns: Day, start_schedule and end_schedule.
Day | start_schedule | end_schedule
-------|-----------------|--------------
Monday | 1:00 | 3:00
Monday | 6:00 ...
4
votes
1answer
101 views
How to determine if current locale has 24-hour or 12-hour time format in PHP?
This seems like a dumb question, but I've read the docs and couldn't find any straight-forward method.
I did something awful like:
$isTwentyFourByLocale = (substr(strftime('%X', mktime(16, 0, 0, 6, ...
4
votes
1answer
470 views
PHP - Get timestamp for uploaded file transfer completion
Is it possible to get the date that a file was uploaded to FTP? Not created.
Its use will be in a system where I upload files for a client to view which will appear on a dynamic page and need to be ...
4
votes
4answers
240 views
time() and date() problems after time change (DST - standard)
In PHP I would like to output an HTML option list containing dates for the next 14 days.
These appointments are always at 18 o'clock:
$today_day = date('d');
$today_month = date('m');
$today_year = ...
4
votes
2answers
199 views
4
votes
1answer
275 views
Time Zones in PHP, Date, MySQL…?
I am trying to figure out how to display time in PST on my php site.
I have been putting in timestamps in the MySQL Database with NOW() and calling them like this:
date("m/d/y g:i a", ...
4
votes
4answers
156 views
is there a built in functionality in php to convert seconds to hh:mm:ss
is there a built in functionality in php to convert seconds to hh:mm:ss
4
votes
4answers
3k views
Avoid PHP execution time limit
I need to create a script in PHP language which performs permutation of numbers. But PHP has an execution time limit set to 60 seconds. How can I run the script so that if you need to run more than 60 ...
4
votes
1answer
365 views
Is there a faster/better way to leettime?
I found leettime via twitter, and it's novel enough for me to want to mess around with it/share it with you guys. To my dismay this version doesn't do seconds. It also seems like there might be a more ...
4
votes
4answers
646 views
PHP last day of the month
How can I get the last day of the month in PHP?
Given:
$a_date = "2009-11-23"
I want 2009-11-30; and given
$a_date = "2009-12-23"
I want 2009-12-31.
4
votes
4answers
1k views
Localize current time in PHP
Trying to display current time with PHP (using this):
$date = date('m/d/Y h:i:s a', time());
echo $date;
As simple as it gets. How do I localize it? I want to translate the months and days ...
4
votes
1answer
861 views
Can my PHP time difference function be improved?
Below is my function that will take a timestamp and tell you the time that has passed from now in the format of 23 days 3 hours 4 minutes 6 seconds
The main problem is on my site I use mysql's ...
4
votes
5answers
146 views
Indexing an array every cycle (in seconds)
I have to put datas every 10 seconds in an array. Is it silly to index this array with modified timestamps
$a[timestamp] = 54;
$a[timestamp+10] = 34;
or in Javascript with the setInterval() and ...
4
votes
3answers
8k views
php: convert milliseconds to date
I Have a string that is equal to a date, represented as the number of milliseconds since the Unix epoch.
I am trying to output it into d-m-Y.
The string I was given was "1227643821310", and I am ...
4
votes
6answers
7k views
If I have a PHP string in the format YYYY-DD-MM and a timestamp in MySQL, is there a good way to convert between them?
I'm interested in doing comparisons between the date string and the MySQL timestamp. However, I'm not seeing an easy conversion. Am I overlooking something obvious?
4
votes
1answer
3k views
How to display “12 minutes ago” etc in a PHP webpage?
Can anyone tell me how I can display a status message like "12 seconds ago" or "5 minutes ago" etc in a web page?
3
votes
3answers
47 views
converting DD-MM-YYYY to time (unix)
Can anyone please tell me how I convert DD-MM-YYY (text) to TIME (unix) thought I'd say that I have this line at the top of all my pages, just in case it means a different code.
...
3
votes
3answers
97 views
Live Statistics / incrementer via Timestamp
I have a strange problem and I wasn't sure how to word the title.
What I'm Trying To Do:
I want to keep track of a running total and I want this running total to update live to my page every ...
3
votes
4answers
104 views
C# .NET equivalent to PHP time()
I am working with C# .NET and PHP and need some standard way of recording time between the two. I want to use seconds since 1970 = <?php echo time(); ?> because I'm already using some of php's ...
3
votes
3answers
81 views
How to find time difference between 2 time vars greater than 24 hours
I need to find how much time is between to time values (their difference) which are over 24:00:00.
For example: how can I calculate the difference between 42:00:00 and 37:30:00?
Using strtotime, ...
3
votes
1answer
32 views
portability of php date() and time() functions
Its my understanding that date() and time() functions native to php will give me a timestamp or date formatted based on the local time of the location of the server. So firstly if I'm wrong about ...
3
votes
1answer
97 views
PHP Display link between specific time
I need to display a link at a very specific time using PHP. The php for the WLSG schedule works and that's because it's a pretty simple program that starts on the hour and ends on the hour.
My ...
3
votes
2answers
76 views
Is the Unix Timestamp(UTC) and Java UTC same? Can we compare?
I am afraid, this would seem duplication of many questions on this same context, but i couldn't find any answers for me in that.
What i want is a comparison between two UTC's. One generated in java ...
3
votes
1answer
138 views
Timezone Raw Offsets
While doing some research on timezones I found this interesting post on the GeoNames forum:
rawOffset gives the fixed timezone.
dstOffset gives the civil time offset from GMT on July 1st
gmtOffset ...
3
votes
4answers
71 views
PHP regex output converting
I want to turn a output like 12h 34m 45s to 12:34:45
also it should be possible if one o these is returned empty is will ignore it.
So 34m 45s should be 00:34:45 and off course single digits should ...
3
votes
4answers
127 views
Rounding PHP timestamp
What would be a good solution to round a timestamp to the hour?
For example, after using date('d.m.y h:m', time()), I get '02.08.11 7:07'... Now, from this, I'd like to have the timestamp for 7:00.
...
3
votes
2answers
136 views
How can i detect time like strings in a string
I would like to detect all time like strings in a webpage, and then use strtotime() in php to get unix time stamps. Is there a way to detect time like strings using php. I could use regex for a ...