0

I've got a function that generates a matrix of date pairs. specifically, it takes two dates and adds the 31 day ranges to an array, so roughly, it would look like: [[date, date+31], [date, date+31], ...]

I'm using a recursive function to do it:

public function getBatchDates(Carbon $start, Carbon $end, array $arr) {
        $setEnd = Carbon::createFromTimestamp($start->getTimestamp())->addDays(31);
        if($setEnd->greaterThanOrEqualTo($end)) {
            $setEnd = $end;
            array_push($arr, array($start, $setEnd));
            return;
        }

        array_push($arr, array($start, $setEnd));

        $this->getBatchDates($setEnd, $end, $arr);
}

Now, when I debug the test that calls this function, it seems to work correctly:

look right

However, the test, which is roughly as follows:

$array = array();
getBatchDates(new Carbon("first day of December 2015"),Carbon::now(), $array);

$this->assertNotNull($array);
$this->assertGreaterThan(0, sizeof($array));

It fails, because the $array is 0-length. Is there something I'm missing, the debugger makes it look like things are working.

1 Answer 1

3

Arrays in PHP are not passed into functions by reference, but by value. You'll need to either change the function signature to public function getBatchDates(Carbon $start, Carbon $end, array &$arr) (I think) or return the modified array.

Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.