DZone Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world
Simple UK Date Format Function
Simple function to format a timestam date to a uk date in PHP
Call using
uk_date({date string});
function uk_date($date) {
// date_default_timezone_set('Europe/London'); // Enables daylight savings time PHP5.1 or higher
return gmdate('d F Y @ G:i', strtotime($date));
}





