Jump to content

Formatting Date


joesaddigh

Recommended Posts

Yes it is simple, but look at what you're doing. You can't use the value of $DateAndTime like that. You're trying to assign the result to it based on it's value, which doesn't yet exist. Are you just trying to assign the current time to it?

Link to comment
https://forums.phpfreaks.com/topic/249418-formatting-date/#findComment-1280645
Share on other sites

Yes it is simple, but look at what you're doing. You can't use the value of $DateAndTime like that. You're trying to assign the result to it based on it's value, which doesn't yet exist. Are you just trying to assign the current time to it?

QFT

 

just change it to this if you want the current time.

$DateAndTime = date('d-m-y', time());

 

 

strtotime is meant to do exactly what the function suggests.. turn a string into a timestamp.

An example string being.

$variable = strtotime("4 days ago");

Link to comment
https://forums.phpfreaks.com/topic/249418-formatting-date/#findComment-1280654
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.