I have started my ZF2 application from Skeleton-Application. I want instance of Date class in one of my controller. I tried to search Date.php class under...
Don't forget to call DateTime() in Zend Framework 2 like base class. Like:
$date = new \DateTime($str);
where $str is a string from which you create date object.
$str
Zend_Date has been removed in favor of PHP 5.3 DateTime API http://es.php.net/manual/en/book.datetime.php