Skip to content

Instantly share code, notes, and snippets.

@coffeepostal
Created November 10, 2018 17:34
Show Gist options
  • Save coffeepostal/82becfd6029810775a86c16b6ba163fc to your computer and use it in GitHub Desktop.
Save coffeepostal/82becfd6029810775a86c16b6ba163fc to your computer and use it in GitHub Desktop.
PHP: Convert SQL Date Format to PHP Readable
<?php
$timestamp = strtotime($result->datetime);
echo date("Y-m-d H:i:s", $timestamp);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment