<?php

$before = "2016-01-19 06:22:00";
$after = date('c', strtotime($before));

echo "Before: $before\n";
echo "After: $after";

?>