An in-progress implementation of PHP's strtotime function
Note: see src/Strtotime/formatter_bag.cr to see which algorithmns are enabled.
Note: see src/Strtotime/formatter_parsers.cr to see which algorithmns can be finished.
-
Add the dependency to your
shard.yml
:dependencies: php-strtotime: github: iomcr/php-strtotime
-
Run
shards install
require "php-strtotime"
value : Time = Iom::PHP::Strtotime.strtotime("yesterday")
# 2020-06-13 00:00:00 UTC
now : Time = Time.parse_rfc3339("2005-10-18T11:00:00Z")
value : Time = Iom::PHP::Strtotime.strtotime("yesterday", now)
# 2005-10-17 00:00:00 UTC
value : Int64 = Iom::PHP::Strtotime.strtotime("now", now = 1129633200)
# 1129633200
value : Int64 = Iom::PHP::Strtotime.strtotime("@1129633200").to_unix
# 1129633200
>>> \Carbon\Carbon::createFromTimestampUTC(strtotime('dec 12 2004 4pm', 1129633200))->toRfc3339String()
=> "2004-12-12T16:00:00+00:00"
>>> \Carbon\Carbon::createFromTimestampUTC(strtotime('+14 hours'))->toRfc3339String()
=> "2020-06-14T14:52:54+00:00"
>>> \Carbon\Carbon::createFromTimestampUTC(strtotime('now'))->toRfc3339String()
=> "2020-06-14T00:54:53+00:00"
>>> \Carbon\Carbon::createFromTimestampUTC(strtotime('30 minutes'))->toRfc3339String()
=> "2020-06-14T01:24:59+00:00"
TODO:
- Implement all algorithmns (approx 25% implemented)
- Ensure combinations work
- Even more tests.
- Fork it (https://github.com/iomcr/php-strtotime/fork)
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create a new Pull Request
- IOM - creator and maintainer