Giter Site home page Giter Site logo

Comments (5)

rlanvin avatar rlanvin commented on August 25, 2024

Hmm I'm not sure I understand your problem or your reasoning here. If you provide an explicit DTSTART, the current time has absolutely no impact on the way a RRULE is calculated.

from php-rrule.

ccurdt avatar ccurdt commented on August 25, 2024

Hmm I'm not sure I understand your problem or your reasoning here. If you provide an explicit DTSTART, the current time has absolutely no impact on the way a RRULE is calculated.

RRule generates the repetitions for me with the passed time. See for this

$humanReadable = $rrule->humanReadable([
    'date_formatter' => function($date) { return $date->format('r'); },
]);
//Output 2: "weekly on Tuesday, starting from Tue, 12 Sep 2023 09:00:00 +0200, 3 times"

So the time of day is also processed

Other asked: I want exactly 3 repetitions without a self-repeat. Here is an example:

$rSet = new RSet();
// 2023-09-12 is a Tuesday
$dateFrom = '2023-09-12 09:00 AM';
$dateTimeObj = DateTime::createFromFormat('Y-m-d H:i A', $dateFrom);

$rrule = new RRule('RRULE:BYDAY=TU;INTERVAL=1;FREQ=WEEKLY;COUNT=3', $dateTimeObj);
$rSet->addRRule($rrule);
$rSet->addExDate($dateFrom);

$rSet returns me only two repetitions due to the exclusion. But i wish 3 repeats (Tue 19 Sep 2023, Tue 26 Sep 2023, Tue 03 Oct 2023) where today tuesday (Tue 12 Sep 2023) is excluded.

from php-rrule.

rlanvin avatar rlanvin commented on August 25, 2024

I am still not quite sure what the problem is exactly, why do you start the rule on Tue 12 Sep if you want it excluded? DTSTART is always included as the first occurrence as long as it matches the rule criteria.

Why don't you start the rule on 13 Sep instead?

from php-rrule.

ccurdt avatar ccurdt commented on August 25, 2024

I could not reconstruct my problem after correcting the timezone problem. @see #142

from php-rrule.

rlanvin avatar rlanvin commented on August 25, 2024

I don't think you're going at it the right way. Completely removing the ability to work with timezones is a nuclear option that might hide your problem sure, but certainly not solve it.
You need to isolate and clearly describe your problem first. For now based on what you described here, my understanding is that everything is working normally and you have the wrong expectations as to how the calculation should work.

from php-rrule.

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.