Basically I want to convert this date : 2016/12/18 to : Sunday, December 18, 2016.
I'm using zend framework and php 5.4
I'm really new with this I tried to use:
date( "Y/m/d", strtotime( $model->startDate))->toString(Zend_Date::DATE_FULL) ;
but brings: Call to a member function toString() on a non-object Any idea? It's possible to make this on php native? Thanks!