Skip to content

Instantly share code, notes, and snippets.

@fprochazka
Created October 25, 2010 08:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save fprochazka/644588 to your computer and use it in GitHub Desktop.
Save fprochazka/644588 to your computer and use it in GitHub Desktop.
Pro nekonečnou platnost
<?php
class InfiniteDateTime extends \DateTime
{
public function __construct ()
{
parent::__construct('2038-01-19 03:14:00');
}
public function format($format)
{
return NULL;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment