Re: [PHP] Re: strtotime

2010-10-18 Thread Richard Quadling
On 17 October 2010 20:34, John Taylor-Johnston wrote: > Yaay, I'm 45 now :). Happy Birthday. ;-) -- Richard Quadling Twitter : EE : Zend @RQuadling : e-e.com/M_248814.html : bit.ly/9O8vFY -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Re: strtotime

2010-10-17 Thread Tamara Temple
On Oct 17, 2010, at 9:57 PM, Tommy Pham wrote: -Original Message- From: Tamara Temple [mailto:tamouse.li...@gmail.com] On Oct 17, 2010, at 2:34 PM, John Taylor-Johnston wrote: Here is another nifty piece of code I found. How does this work? What is 31556926? Number of second in a ye

RE: [PHP] Re: strtotime

2010-10-17 Thread Tommy Pham
> -Original Message- > From: Tamara Temple [mailto:tamouse.li...@gmail.com] > Sent: Sunday, October 17, 2010 2:33 PM > To: PHP General > Subject: Re: [PHP] Re: strtotime > > > On Oct 17, 2010, at 2:34 PM, John Taylor-Johnston wrote: > > > Here is another

Re: [PHP] Re: strtotime

2010-10-17 Thread Tamara Temple
On Oct 17, 2010, at 2:34 PM, John Taylor-Johnston wrote: Here is another nifty piece of code I found. How does this work? What is 31556926? Number of second in a year? (31556926 / (24 * 60 * 60) yields 365.2421...) -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit:

Re: [PHP] Re: strtotime

2010-10-17 Thread richard gray
On 17/10/2010 21:34, John Taylor-Johnston wrote: Yaay, I'm 45 now :). Here is another nifty piece of code I found. How does this work? What is 31556926? number of seconds in a year...? Rich -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.

Re: [PHP] Re: strtotime

2010-10-17 Thread John Taylor-Johnston
Yaay, I'm 45 now :). Here is another nifty piece of code I found. How does this work? What is 31556926? function calculateAge($birthday){ return floor((time() - strtotime($birthday))/31556926); } echo calculateAge('1965-10-17'); http://ca.php.net/manual/en/function.floor.php ---

RE: [PHP] Re: strtotime

2010-10-17 Thread Tommy Pham
> -Original Message- > From: John Taylor-Johnston [mailto:John.Taylor- > johns...@cegepsherbrooke.qc.ca] > Sent: Saturday, October 16, 2010 10:58 PM > To: PHP-General > Subject: [PHP] Re: strtotime > > According to this, I'm 44 not 45 :)p > > $birthday = '1965-08-30'; > > //calculate yea

Re: [PHP] Re: strtotime

2010-10-17 Thread Tamara Temple
On Oct 17, 2010, at 12:58 AM, John Taylor-Johnston wrote: According to this, I'm 44 not 45 :)p $birthday = '1965-08-30'; //calculate years of age (input string: -MM-DD) function birthday ($birthday){ list($year,$month,$day) = explode("-",$birthday); $year_diff = date("Y") - $year;

Re: [PHP] Re: strtotime - assumptions about default formatting of dates

2009-12-24 Thread Angus Mann
I wrote a little AJAX gadget which sent the string typed to a PHP backend which parsed it using strtotime and then formatting it out again as something unamiguous (like 2 January 2009). Then every time the date entry field is changed by the user (with an onKeyUp event), this AJAX call is trigge

Re: [PHP] Re: strtotime

2008-11-09 Thread Eric Butera
On Sun, Nov 9, 2008 at 3:50 PM, Ashley Sheridan <[EMAIL PROTECTED]> wrote: > On Sun, 2008-11-09 at 19:46 +0100, gilles wrote: >> "Thodoris" <[EMAIL PROTECTED]> a crit dans le message de news: >> [EMAIL PROTECTED] >> > O/H Bastien Koert ??: >> >> 2008/11/8 Maciek Sokolewicz <[EMAIL PROTECTED]> >

Re: [PHP] Re: strtotime

2008-11-09 Thread Ashley Sheridan
On Sun, 2008-11-09 at 19:46 +0100, gilles wrote: > "Thodoris" <[EMAIL PROTECTED]> a crit dans le message de news: > [EMAIL PROTECTED] > > O/H Bastien Koert ??: > >> 2008/11/8 Maciek Sokolewicz <[EMAIL PROTECTED]> > >> > >> > >>> gilles wrote: > >>> > >>> > Avec la version 4 de php, strtot

Re: [PHP] Re: strtotime

2008-11-09 Thread Thodoris
O/H gilles έγραψε: "Thodoris" <[EMAIL PROTECTED]> a ιcrit dans le message de news: [EMAIL PROTECTED] O/H Bastien Koert ??: 2008/11/8 Maciek Sokolewicz <[EMAIL PROTECTED]> gilles wrote: Avec la version 4 de php, strtotime("20080950") fonctionne correctement en

Re: [PHP] Re: strtotime

2008-11-09 Thread gilles
"Thodoris" <[EMAIL PROTECTED]> a écrit dans le message de news: [EMAIL PROTECTED] > O/H Bastien Koert ??: >> 2008/11/8 Maciek Sokolewicz <[EMAIL PROTECTED]> >> >> >>> gilles wrote: >>> >>> Avec la version 4 de php, strtotime("20080950") fonctionne correctement en allant sur le

Re: [PHP] Re: strtotime

2008-11-09 Thread Thodoris
O/H Bastien Koert ??: 2008/11/8 Maciek Sokolewicz <[EMAIL PROTECTED]> gilles wrote: Avec la version 4 de php, strtotime("20080950") fonctionne correctement en allant sur le mois d'octobre, alors qu'en version 5: 19700101. Merci de votre aide This is an ENGLISH list, plea

Re: [PHP] Re: strtotime

2008-11-09 Thread gilles
"Lester Caine" <[EMAIL PROTECTED]> a écrit dans le message de news: [EMAIL PROTECTED] > Ashley Sheridan wrote: I'll translate In PHP4, strtotime works fine in PHP5 strtotime gives a result of 19700101 when the data entered was strtotime("20080950") >>> What

Re: [PHP] Re: strtotime

2008-11-08 Thread Lester Caine
Ashley Sheridan wrote: I'll translate In PHP4, strtotime works fine in PHP5 strtotime gives a result of 19700101 when the data entered was strtotime("20080950") What does "work fine" mean? "20080950" isn't normal, so what is the expected result? Well, for starts Micah is right, your da

Re: [PHP] Re: strtotime

2008-11-08 Thread Ashley Sheridan
On Sat, 2008-11-08 at 18:57 -0600, Micah Gersten wrote: > Bastien Koert wrote: > > 2008/11/8 Maciek Sokolewicz <[EMAIL PROTECTED]> > > > > > >> gilles wrote: > >> > >> > >>> Avec la version 4 de php, strtotime("20080950") fonctionne correctement en > >>> allant sur le mois d'octobre, alors

Re: [PHP] Re: strtotime

2008-11-08 Thread Micah Gersten
Bastien Koert wrote: > 2008/11/8 Maciek Sokolewicz <[EMAIL PROTECTED]> > > >> gilles wrote: >> >> >>> Avec la version 4 de php, strtotime("20080950") fonctionne correctement en >>> allant sur le mois d'octobre, alors qu'en version 5: 19700101. >>> Merci de votre aide >>> >>> >>> >> T

Re: [PHP] Re: strtotime

2008-11-08 Thread Bastien Koert
2008/11/8 Maciek Sokolewicz <[EMAIL PROTECTED]> > gilles wrote: > >> Avec la version 4 de php, strtotime("20080950") fonctionne correctement en >> allant sur le mois d'octobre, alors qu'en version 5: 19700101. >> Merci de votre aide >> >> > This is an ENGLISH list, please rephrase your question in

Re: [PHP] Re: strtotime problem

2008-10-08 Thread Stut
On 8 Oct 2008, at 12:42, Nathan Rixham wrote: Thodoris wrote: I know that *strtotime*() only recognises the formats mm/dd/, -mm-dd and mmdd for numeric months but I need do something like that: function dateWebToMysql($webdate){ $format = 'Y-m-d'; $timestamp = strtotime($

Re: [PHP] Re: strtotime

2008-02-10 Thread Per Jessen
Ron Piggott wrote: > I see I broke a rule. The variable can't start with a number. Still > strtotime doesn't work with -18 months How would you handle this? > Ron Uh, it works fine here: php5 -r '$a=strtotime("-18 months"); print strftime("%Y%m%d",$a); ': 20060810 /Per Jessen, Zürich