Skip to content

Instantly share code, notes, and snippets.

@xufan6
Created February 12, 2012 16:50
Show Gist options
  • Save xufan6/1809610 to your computer and use it in GitHub Desktop.
Save xufan6/1809610 to your computer and use it in GitHub Desktop.
unicode clock
<?php
$str0 = "2012-01-24 12:00:00";
function clockit ( $date ){
$t = new DateTime ($date);
$h = $t->format('g');
$a = array (
"πŸ•›","πŸ•","πŸ•‘","πŸ•’","πŸ•“","πŸ•”","πŸ••","πŸ•–","πŸ•—","πŸ•˜","πŸ•™","πŸ•š","πŸ•›"
);
return $a[$h];
}
echo clockit($str0);
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment