Re: [PHP] Re: british date format

[email protected] ("André Medeiros")
Newsgroups php.general
Message-ID <[email protected]>
Yeah, that would be the way to do it ;)

On Fri, May 9, 2008 at 3:54 PM, Shawn McKenzie <[email protected]> wrote:
> Shawn McKenzie wrote:
>>
>> André Medeiros wrote:
>>>
>>> Shawn,
>>>
>>> I think the idea here was to get a timestamp from a date in that
>>> format he was telling about.
>>>
>>> After replying however, I noticed that strptime is only implemented in
>>> PHP5. Sorry about that mate.
>>>
>>> On Fri, May 9, 2008 at 2:36 PM, Shawn McKenzie <[email protected]>
>>> wrote:
>>>>
>>>> Merca, Ansta Ltd wrote:
>>>>>
>>>>> Hi
>>>>>
>>>>> Anyone "dd/mm/yyyy" as a date variable? strtotime - works fine with
>>>>> "mm/dd/yyyy" but now with "dd/mm/yyyy". (PHP 4.x)
>>>>
>>>> setlocale()
>>>>
>>>> and then...
>>>>
>>>> http://pt.php.net/manual/en/function.strftime.php
>>>>
>>>> -Shawn
>>>>
>>>> --
>>>> PHP General Mailing List (http://www.php.net/)
>>>> To unsubscribe, visit: http://www.php.net/unsub.php
>>>>
>>>>
>> Couldn't see any other way.  *nix strtotime is supposed to use locale.
>>
> Fixed that for me:
>
> $date = '20/12/1971';
> $d = explode('/', $date);
> echo mktime(0 ,0, 0, $d[1], $d[0],$d[2])."\n";
>
>>
>> -Shawn
>
> --
> PHP General Mailing List (http://www.php.net/)
> To unsubscribe, visit: http://www.php.net/unsub.php
>
>
lmpx.com only provides a reader for public news (NNTP) servers. It is not affiliated with the servers or forums shown here and is not responsible for the content of articles, which is written by their respective authors.