Code Monkey home page Code Monkey logo

Comments (6)

rlanvin avatar rlanvin commented on August 28, 2024

Is this... Normal behavior?

Well yes.

The array access operator is meant to access occurrences by index, not properties of the object. So if you want to access the Nth occurrence, you use $rule[N]. E.g. the 3rd occurrence is $rule[2]. More info on the wiki.

What's happening is when you use $rule['dtstart'], PHP understands $rule[0] due to loose typecasting. $rule[0] is the first occurrence of the set, which incidentally is your dtstart. Note that it could be something else as well, depending on the rule.

from php-rrule.

jpmurray avatar jpmurray commented on August 28, 2024

RIGHT! Thank you for that clarification, I just couldn't wrap my mind around that... It's one of these days! :)

from php-rrule.

jpmurray avatar jpmurray commented on August 28, 2024

But then... I might just be a lousy wiki reader, but isn't there a method to get the datetime object of the rule (and not the first occurence) that I didn't see? I'm just so sure I used one in the past, but yeah, it might just be that I misused the array access...

from php-rrule.

rlanvin avatar rlanvin commented on August 28, 2024

No worries. I'll just keep the issue open for now though, because it might be useful to throw an exception in offsetGet to avoid this kind of confusion. I'll close it once I have added this.

isn't there a method to get the datetime object of the rule

Well I'm not sure. If you mean the DTSTART property, you have getRule() that returns an array of all the properties. So you could use $rrule->getRule()['DTSTART']. Careful though this is not guaranteed to be a datetime object. It will be whatever type you passed to the constructor.

If you know that DTSTART is the first occurence, then by all mean, use $rule[0] to get it as a datetime object.

from php-rrule.

jpmurray avatar jpmurray commented on August 28, 2024

AH! That's why!

$rrule->getRule()['DTSTART'] returns value passed by constructor! I had some part of the code where I sent a datetime object, and I reused the code somewhere where I instantiated with a Rrule string!

Now it's clear for me! :D

from php-rrule.

rlanvin avatar rlanvin commented on August 28, 2024

Good! Note that if you pass a RFC String to the constructor, you will get a datetime object for DTSTART. The situations where you would not get a datetime object are if you used an array, with the DTSTART key a string ,e.g. "2017-01-01".

I added checks to offsetGet, now it'll throw an InvalidArgumentException for illegal offset types, which should avoid confusion.

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.