A fluent extension to PHPs DateTime class.
<?php
$date = new ExpressiveDate;
$date->minusOneDay();
echo $date->getRelativeDate(); // 1 day ago
$date->addOneWeek();
echo $date->getShortDate(); // Jan 31, 2012
Refer to the following guide on how to use Expressive Date.
Expressive Date was written by Jason Lewis. Expressive Date is released under the 2-clause BSD License. See the LICENSE file for details.
Copyright 2012 Jason Lewis