Tagged Questions

3
votes
3answers
435 views

How to write an SQL query that counts the number of rows per month and year?

Had anyone any idea how to query a vbulletin database to generate a report on the number of registrations per month/year to achive results like.. MM/YYYY Count 01/2001 : 10 02/2001 : 12 ...
3
votes
1answer
600 views

how to compare two timestamp values from mysql with php

I have a db with time stamp values in this format: 0000-00-00 00:00:00 When I add this to the db I add a minutes to the current time. Now I need to check if the current time has passed the value added ...
3
votes
2answers
6k views

Use Unix timestamp in Doctrine Timestampable

How do I use Unix timestamps with the Doctrine Timestampable behavior? I found the following code snippet here, but I'd rather not manually add this everywhere: $this->actAs('Timestampable', ...
2
votes
3answers
1k views

Get the unix timestamp of midnight on the previous Wednesday

How would I go about finding the unix timestamp of midnight of the previous Wednesday? My only approach would be to get the day index and day number of today, and subtract the difference, but I can ...
1
vote
2answers
281 views

Unix time to real time

Not sure whats up with the code $date = strtotime("%b %d, %Y", $datedata); $time = strtotime("%I:%M:%S %p", $datedata); The time i gets from the DB is 1298747601 and is the $datedata I have ...
1
vote
3answers
134 views

Deducing 24 hour time from a 12 hour time without AM and PM in PHP

I'm working on a project that screen scrapes a list of departure times from a train schedule posted on the web. I realize this would be a lot easier if I wasn't using such a crude method to access ...
1
vote
3answers
184 views

What is the last Unix time?

What is the last Unix time in decimal? I'm going to set it as the expiration date of cookies (using PHP). Is it possible to cause problem?
1
vote
1answer
376 views

PHP: How to determine Unix Timestamp of midnight tomorrow?

I have the following code to determine the unix timestamp of midnight tomorrow. It seems pretty hacky to me and I wondered if anyone had a more elegant solution. date("U", strtotime(date("Y-m-d ...
1
vote
7answers
5k views

Convert String To date in PHP

How can I convert this string 05/Feb/2010:14:00:01 to unixtime ?
1
vote
3answers
260 views

How to convert 2010-03-01 to Unixtime

How can i convert 2010-03-01 to unixtime like 1267452738
1
vote
3answers
678 views

Unixtime & mysql

I have a field on my table which is called X, and I store unixtime(php -> time()). My question is: How can I list all the months from my DB, something like: 6.2009 8.2009 etc.. And my second ...
0
votes
4answers
51 views

strtotime and then convert to UNIX?

EDIT Per the comment below, here's my attempt at splitting / combining / converting the string prior to implementing mktime... $date1 = explode("T",'2005-03-27T00:00:00'); $date2 = explode("-", ...
0
votes
1answer
278 views

Removing an hour from PHP (FROM_UNIXTIME)

Could you please advice how to remove an hour from unixtime. I have a unixtime and i need to remove an extra hour before converting to normal time. Could you please advice how to do this? Also, is ...
0
votes
2answers
118 views

float to unix epoch

I am pulling data from an JSON database that is storing the time in unix epoch but for some reason the numbers are being floated when I'm pulling them out. This is something I've never had to deal ...
0
votes
1answer
133 views

Help with a MySQL Unix timestamp Query

I am trying to create a custom MySQL for use with the Expression Engine CMS. The purpose of the query is to display events that are happening today or in the future. The problem is that the EE field ...
0
votes
2answers
3k views

convert date to unixtime php

I have a form which posts date information month, day, yeah, hour, minute, am/pm. How do i encode/decode this to and from unixtime using php?