Jump to content

Date question


Acs

Recommended Posts

Did you look in the online manual at [a href=\"http://www.php.net\" target=\"_blank\"]http://www.php.net[/a]?

A quick search would have revealed the [a href=\"http://www.php.net/date\" target=\"_blank\"]date[/a]() and [a href=\"http://www.php.net/strtotime\" target=\"_blank\"]strtotime[/a]() functions.

[code]<?php
$str = '2006-03-24';
echo date('Y F l',strtotime($str));  // the l is a lowercase L, not a captal I or 1
?>[/code]

Ken
Link to comment
https://forums.phpfreaks.com/topic/5733-date-question/#findComment-20536
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.