add and substract time in php
i have time in the format 04:00 PM so how can i add or substract time in that... in such a way that when i substra开发者_JAVA百科ct AM and PM are also maintained...
You can use strtotime function.
$timestamp = strtotime('04:00 PM');
精彩评论