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.
<?php
$string = '20050609042311.0Z';
$string1 = preg_replace ('/^(\d{4})(\d{2})(\d{2})(\d{2})(\d{2})(\d{2})(.*)/', '$1-$2-$3 $4:$5:$6', $string);
print date ('Y-m-d', strtotime($string1));
?>