[
MAINHACK
]
Mail Test
BC
Config Scan
HOME
Create...
New File
New Folder
Viewing / Editing File: README.md
Date ==== [](https://packagist.org/packages/jenssegers/date) [](https://packagist.org/packages/jenssegers/date) [](https://travis-ci.org/jenssegers/date) [](https://coveralls.io/github/jenssegers/date?branch=master) [](https://www.paypal.me/jenssegers) This date library extends [Carbon](https://github.com/briannesbitt/Carbon) with multi-language support. Methods such as `format`, `diffForHumans`, `parse`, `createFromFormat` and the new `timespan`, will now be translated based on your locale. > All translations made by contributors have been moved to the Carbon 2 package. This package now uses the Carbon translations to provide you with better multi-language support. Translation issues should be reported on the [Carbon repository](https://github.com/briannesbitt/Carbon). Please also check out the original documentation [here](https://carbon.nesbot.com/docs). Installation ------------ Install using composer: ```bash composer require jenssegers/date ``` Laravel ------- There is a service provider included for integration with the Laravel framework. This provider will get the application locale setting and use this for translations. This service will be automatically registered if you use Laravel 5.5+ using the auto-discovery. Else to register the service provider, add the following to the providers array in `config/app.php`: ```php 'Jenssegers\Date\DateServiceProvider', ``` You can also add it as a Facade in `config/app.php`: ```php 'Date' => Jenssegers\Date\Date::class, ``` Languages --------- This package contains language files for the following languages: - Albanian - Arabic - Azerbaijani - Bangla - Basque - Belarusian - Bosnian - Brazilian Portuguese - Bulgarian - Catalan - Croatian - Chinese Simplified - Chinese Traditional - Czech - Danish - Dutch - English - Esperanto - Estonian - Finnish - French - Galician - Georgian - German - Greek - Hebrew - Hindi - Hungarian - Icelandic - Indonesian - Italian - Japanese - Kazakh - Korean - Latvian - Lithuanian - Macedonian - Malay - Norwegian - Nepali (नेपाली) - Polish - Portuguese - Persian (Farsi) - Romanian - Russian - Thai - Serbian (latin) - Serbian (cyrillic) - Slovak - Slovenian - Spanish - Swedish - Turkish - Turkmen - Ukrainian - Uzbek - Vietnamese - Welsh Usage ----- The Date class extends the Carbon methods such as `format` and `diffForHumans`n and translates them based on your locale: ```php use Jenssegers\Date\Date; Date::setLocale('nl'); echo Date::now()->format('l j F Y H:i:s'); // zondag 28 april 2013 21:58:16 echo Date::parse('-1 day')->diffForHumans(); // 1 dag geleden ``` The Date class also added some aliases and additional methods such as: `ago` which is an alias for `diffForHumans`, and the `timespan` method: ```php echo $date->timespan(); // 3 months, 1 week, 1 day, 3 hours, 20 minutes ``` Methods such as `parse` and `createFromFormat` also support "reverse translations". When calling these methods with translated input, it will try to translate it to English before passing it to DateTime: ```php $date = Date::createFromFormat('l d F Y', 'zaterdag 21 maart 2015'); ``` Carbon ------ Carbon is the library the Date class is based on. All of the original Carbon operations are still available, check out <https://carbon.nesbot.com/docs> for more information. Here are some of the available methods: ### Creating dates You can create Date objects just like the DateTime object (<http://www.php.net/manual/en/datetime.construct.php>): ```php $date = new Date(); $date = new Date('2000-01-31'); $date = new Date('2000-01-31 12:00:00'); // With time zone $date = new Date('2000-01-31', new DateTimeZone('Europe/Brussels')); ``` You can skip the creation of a DateTimeZone object: ```php $date = new Date('2000-01-31', 'Europe/Brussels'); ``` Create Date objects from a relative format (<http://www.php.net/manual/en/datetime.formats.relative.php>): ```php $date = new Date('now'); $date = new Date('today'); $date = new Date('+1 hour'); $date = new Date('next monday'); ``` This is also available using these static methods: ```php $date = Date::parse('now'); $date = Date::now(); ``` Creating a Date from a timestamp: ```php $date = new Date(1367186296); ``` Or from an existing date or time: ```php $date = Date::createFromDate(2000, 1, 31); $date = Date::createFromTime(12, 0, 0); $date = Date::create(2000, 1, 31, 12, 0, 0); ``` ### Formatting Dates You can format a Date object like the DateTime object (<http://www.php.net/manual/en/function.date.php>): ```php echo Date::now()->format('Y-m-d'); // 2000-01-31 ``` The Date object can be cast to a string: ```php echo Date::now(); // 2000-01-31 12:00:00 ``` Get a human readable output (alias for diffForHumans): ```php echo $date->ago(); // 5 days ago ``` Calculate a timespan: ```php $date = new Date('+1000 days'); echo Date::now()->timespan($date); // 2 years, 8 months, 3 weeks, 5 days // or even echo Date::now()->timespan('+1000 days'); ``` Get years since date: ```php $date = new Date('-10 years'); echo $date->age; // 10 $date = new Date('+10 years'); echo $date->age; // -10 ``` ### Manipulating Dates You can manipulate by using the *add* and *sub* methods, with relative intervals (<http://www.php.net/manual/en/datetime.formats.relative.php>): ```php $yesterday = Date::now()->sub('1 day'); $tomorrow = Date::now()->add('1 day'); // ISO 8601 $date = Date::now()->add('P2Y4DT6H8M'); ``` You can access and modify all date attributes as an object: ```php $date->year = 2013: $date->month = 1; $date->day = 31; $date->hour = 12; $date->minute = 0; $date->second = 0; ``` ## Contributing Language contributions should made to <https://github.com/briannesbitt/Carbon>. ## License Laravel Date is licensed under [The MIT License (MIT)](LICENSE). ## Security contact information To report a security vulnerability, follow [these steps](https://tidelift.com/security).
Save Changes
Cancel / Back
Close ×
Server Info
Hostname: server1.winmanyltd.com
Server IP: 203.161.60.52
PHP Version: 8.3.27
Server Software: Apache
System: Linux server1.winmanyltd.com 4.18.0-553.22.1.el8_10.x86_64 #1 SMP Tue Sep 24 05:16:59 EDT 2024 x86_64
HDD Total: 117.98 GB
HDD Free: 59.8 GB
Domains on IP: N/A (Requires external lookup)
System Features
Safe Mode:
Off
disable_functions:
None
allow_url_fopen:
On
allow_url_include:
Off
magic_quotes_gpc:
Off
register_globals:
Off
open_basedir:
None
cURL:
Enabled
ZipArchive:
Enabled
MySQLi:
Enabled
PDO:
Enabled
wget:
Yes
curl (cmd):
Yes
perl:
Yes
python:
Yes (py3)
gcc:
Yes
pkexec:
Yes
git:
Yes
User Info
Username: eliosofonline
User ID (UID): 1002
Group ID (GID): 1003
Script Owner UID: 1002
Current Dir Owner: 1002