ryanwinchester / carbonize
Carbon helper for cloning and creating new Carbon instances.
Installs: 12
Dependents: 0
Suggesters: 0
Security: 0
Stars: 6
Watchers: 3
Forks: 0
Open Issues: 1
Type:package
Requires
- php: ^5.6|^7.0
- nesbot/carbon: 1.21.*
Requires (Dev)
- codeclimate/php-test-reporter: ^0.4.4
- phpunit/phpunit: ^5.7|^6.4
This package is auto-updated.
Last update: 2024-10-28 23:11:06 UTC
README
Carbon helper for creating new instances of Carbon from other Carbon objects,
DateTime|Immutable objects, date strings, timestamps, or null (for now
).
Sometimes we have to work on projects that already exist or are underway, that are full of magic and inconsistent date formats. Is this going to be a timestamp? a date string? a Carbon instance? Does it even matter as long as it's a datetime of some sort? ¯\_(ツ)_/¯
public function doMyThing($datetime) { // Whatever it was, it is _now_ a NEW carbon instance $datetime = carbonize($datetime); // do stuff with your carbon instance }
You can use it as either carbonize()
, carbon()
, or Carbonize\Carbonize::toCarbon()
.
Install
composer require ryanwinchester/carbonize
This does not install carbon as a dependency, so add it yourself.
Important Note: Please use Carbon 1.21 (not 1.22) until timezones are fixed. (briannesbitt/Carbon#863)
What it does
carbonize() == Carbon::now("UTC"); $carbon = new Carbon(); carbonize($carbon) == $carbon->copy(); $dt = new DateTime(); carbonize($dt) == Carbon::instance($dt); $dtImmutable = new DateTimeImmutable(); carbonize($dtImmutable) == Carbon::instance(new DateTime($dtImmutable->format(DateTime::ATOM))); carbonize(1507957785) == Carbon::createFromTimestamp(1507957785, "UTC"); carbonize("1507957785") == Carbon::createFromTimestamp(1507957785, "UTC"); carbonize("2017-01-01 12:04:01") == Carbon::parse("2017-01-01 12:04:01", "UTC"); carbonize("3 months ago") == Carbon::parse("3 months ago", "UTC");
License
MIT
Credits
Notes
Although Carbon is decent, use Chronos if you can. (https://github.com/cakephp/chronos)
<3 Chronos, Immutability FTW ᕙ(⇀‸↼‶)ᕗ