PHP date next tuesday 1pm -


$tuesday_slot = strtotime('next tuesday'); 

above code give me unix time next tuesday.

how unix time e.g next tuesday, 1pm.

thanks!

easy :

$tuesday_slot = strtotime('next tuesday'); $tuesday_slot = strtotime('+ 13 hours',$tuesday_slot); echo date("r",$tuesday_slot); 

or

$tuesday_slot = strtotime('next tuesday 1pm'); echo date("r",$tuesday_slot); 

Comments

Popular posts from this blog

java - Date formats difference between yyyy-MM-dd'T'HH:mm:ss and yyyy-MM-dd'T'HH:mm:ssXXX -

c# - Get rid of xmlns attribute when adding node to existing xml -