Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Interactive shell
php > $date = "2004-12-12 12:30:00";
php > echo array_pop(explode(' ', $date));
12:30:00
function getTimeFromDateStamp( $datestamp ){
return @date('H:i:s', strtotime($datastamp));
}
//the @ is to suppress the warning you might get about not setting the default time zone. ideally you will have done this in php.ini or in prior code.