Coder Social home page Coder Social logo

Comments (10)

kylekatarnls avatar kylekatarnls commented on May 28, 2024 7

And somes holydays (like Easter) are not same dates each year.
I think you better have to do your own extension :

MyCarbon extends Carbon {
    public function isHoliday() {
        return in_array([ $this->month, $this->day ], [
            [12, 25], // Christmas
            [01, 01], // New Year
            ...
        ]);
    }
}

from carbon.

Anahkiasen avatar Anahkiasen commented on May 28, 2024 7

I think what Carbon needs is a macro functionality so you can add your own feature over it. If you need to define the holidays yourself this is pretty much what this would be.

Carbon::macro('isHoliday', function ($date) {
    return in_array($date->format('Y-m-d'), [holidays]); 
});

Carbon::parse('some-date')->isHoliday();

Something like that, that would allow people to add helpers for their edge cases, what do you think @briannesbitt ?

from carbon.

Anahkiasen avatar Anahkiasen commented on May 28, 2024

That would be incredibly complicated, do you know how many days are considered holidays all countries combined ?

from carbon.

carlituxman avatar carlituxman commented on May 28, 2024

I think, but if we would use, we can add a config array of days for example:
'Christmas' => [12,25], //to repeat festive days every year
'New Year' => [01,01],
'my festive' => [2014,05,01] //to only day timely festive

from carbon.

carlituxman avatar carlituxman commented on May 28, 2024

great! thanks!

from carbon.

moleculezz avatar moleculezz commented on May 28, 2024

There is a set of packages that is trying to solve just that.
https://github.com/Altruja/workday which makes use of https://github.com/Mayflower/libholiday

from carbon.

no92 avatar no92 commented on May 28, 2024

Good luck with that, incredibly complicated to do something like that! BTW, christmas in Germany is always the 24th of December, not the 25th.

from carbon.

briannesbitt avatar briannesbitt commented on May 28, 2024

I rather this be done in a sub class than adding macro functionality. If it then becomes flushed out and useful for others (and a common issue) then we can look at pulling it in.

from carbon.

rmblstrp avatar rmblstrp commented on May 28, 2024

I created a PR which adds Carbon extensions that check to see if a given date is a business day. Custom holiday and business schedules can be provided which allow you to properly determine what the date is for next or previous number of business days.

#706

from carbon.

kylekatarnls avatar kylekatarnls commented on May 28, 2024

Will appear in the documentation:
gh-pages...kylekatarnls:gh-pages-1.26

from carbon.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.