2017 © Pedro Peláez
 

library relativetime

A library that calculates the time difference between two dates and returns the result in words (Example: 5 minutes ago or 5 Minutes left). The library supports other languages aswell like Spanish and German.

image

mpratt/relativetime

A library that calculates the time difference between two dates and returns the result in words (Example: 5 minutes ago or 5 Minutes left). The library supports other languages aswell like Spanish and German.

  • Friday, April 22, 2016
  • by mpratt
  • Repository
  • 2 Watchers
  • 20 Stars
  • 18,755 Installations
  • PHP
  • 1 Dependents
  • 0 Suggesters
  • 9 Forks
  • 0 Open issues
  • 7 Versions
  • 8 % Grown

The README.md

RelativeTime

Build Status Total Downloads Monthly Downloads Latest Stable Version, (*1)

Support via PayPal, (*2)

RelativeTime is a lightweight and easy to use library that helps you calculate the time difference between two dates and returns the result in words (like, 5 minutes ago or 5 minutes left). The library supports other languages as well like Spanish, PortugueseBR, French, Czech, Russian, SimplifiedChinese, Swedish and German, (*3)

It uses the standard \DateTime() and \DateInterval() classes found in modern PHP versions. For more information, please read the Usage section of this README., (*4)

Requirements

  • PHP >= 5.3 (Tested only on PHP +7.3)

Installation

Install with Composer

If you're using Composer to manage dependencies, you can use this library by creating a composer.json file and adding this:, (*5)

{
    "require": {
        "mpratt/relativetime": "~1.0"
    }
}

Save it and run composer.phar install, (*6)

Standalone Installation (without Composer)

Download the latest release or clone this repository, place the Lib/RelativeTime directory somewhere in your project. Afterwards, you only need to include the included Autoload.php file., (*7)

    require '/path/to/RelativeTime/Autoload.php';

    use RelativeTime\RelativeTime;

    $relativeTime = new RelativeTime();

Or if you already have PSR-0 compliant autoloader, you just need to register RelativeTime:, (*8)

    $loader->registerNamespace('RelativeTime', 'path/to/RelativeTime');

Usage

Most of the times you are going to need the convert($fromDate, $toDate) method., (*9)


use RelativeTime\RelativeTime; $relativeTime = new RelativeTime(); echo $relativeTime->convert('2010-09-05', '2010-03-30'); // 5 months, 6 days ago $relativeTime = new RelativeTime(); echo $relativeTime->convert('2012-03-05', '2013/02/05'); // 11 months left

There are 2 other useful methods timeAgo($date) and timeLeft($date), that calculate the time since/until the current date/time., (*10)

    use RelativeTime\RelativeTime;

    // Asumming Today is the 2013-09-23 17:23:47


    $relativeTime = new RelativeTime();
    echo $relativeTime->timeAgo('2012-08-29 06:00');
    // 1 year, 25 days, 16 hours, 23 minutes, 13 seconds ago

    $relativeTime = new RelativeTime();
    echo $relativeTime->timeLeft('2013-10-31 01:00:05');
    // 1 month, 7 days, 2 hours, 36 minutes, 52 seconds left

Configuration Options

The main object accepts an array with configuration directives, (*11)


use RelativeTime\RelativeTime; $config = array( 'language' => '\RelativeTime\Languages\English', 'separator' => ', ', 'suffix' => true, 'truncate' => 0, 'use_weeks' => false, ); $relativeTime = new RelativeTime($config);
Directive Definition
language The language to be used, for example English, Spanish, PortugueseBR, French, Czech, Russian, SimplifiedChinese, Swedish or German are supported. Even The instantiated object is allowed, as in new \RelativeTime\Languages\English()
separator The separator between time units. , by default.
truncate The number of units you want to display. By default it displays all of the available ones.
suffix Whether or not to append the .... ago or ..... left
use_weeks By default is set to false. When set to true it will include week numbers too.

Author

Michael Pratt - yo@michael-pratt.com - http://www.michael-pratt.com See also the list of contributors which participated in this project., (*12)

If you like this library, it has been useful to you and want to support me, you can do it via paypal., (*13)

Support via PayPal, (*14)

License

RelativeTime is licensed under the MIT License - see the LICENSE file for details, (*15)

The Versions

22/04 2016

dev-master

9999999-dev https://github.com/mpratt/RelativeTime

A library that calculates the time difference between two dates and returns the result in words (Example: 5 minutes ago or 5 Minutes left). The library supports other languages aswell like Spanish and German.

  Sources   Download

MIT

The Requires

  • php >=5.3

 

date time interval future ago relative time-ago

24/12 2015

1.5.4

1.5.4.0 https://github.com/mpratt/RelativeTime

A library that calculates the time difference between two dates and returns the result in words (Example: 5 minutes ago or 5 Minutes left). The library supports other languages aswell like Spanish and German.

  Sources   Download

MIT

The Requires

  • php >=5.3

 

date time interval future ago relative time-ago

05/11 2015

1.5.3

1.5.3.0 https://github.com/mpratt/RelativeTime

A library that calculates the time difference between two dates and returns the result in words (Example: 5 minutes ago or 5 Minutes left). The library supports other languages aswell like Spanish and German.

  Sources   Download

MIT

The Requires

  • php >=5.3

 

date time interval future ago relative time-ago

04/09 2015

1.5.2

1.5.2.0 https://github.com/mpratt/RelativeTime

A library that calculates the time difference between two dates and returns the result in words (Example: 5 minutes ago or 5 Minutes left). The library supports other languages aswell like Spanish and German.

  Sources   Download

MIT

The Requires

  • php >=5.3

 

date time interval future ago relative time-ago

28/05 2015

1.5.1

1.5.1.0 https://github.com/mpratt/RelativeTime

A library that calculates the time difference between two dates and returns the result in words (Example: 5 minutes ago or 5 Minutes left). The library supports other languages aswell like Spanish and German.

  Sources   Download

MIT

The Requires

  • php >=5.3

 

date time interval future ago relative time-ago

17/01 2015

1.5

1.5.0.0 https://github.com/mpratt/RelativeTime

A library that calculates the time difference between two dates and returns the result in words (Example: 5 minutes ago or 5 Minutes left). The library supports other languages aswell like Spanish and German.

  Sources   Download

MIT

The Requires

  • php >=5.3

 

date time interval future ago relative time-ago

24/09 2013

1.0

1.0.0.0 https://github.com/mpratt/RelativeTime

A library that calculates the time difference between two dates and returns the result in words (Example: 5 minutes ago or 5 Minutes left). The library supports other languages aswell like Spanish and German.

  Sources   Download

MIT

The Requires

  • php >=5.3

 

date time interval future ago relative time-ago