[go: up one dir, main page]

Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Exceptions thrown within a yielded from iterator are not rethrown into the generator #8289

Closed
bwoebi opened this issue Apr 1, 2022 · 0 comments

Comments

@bwoebi
Copy link
Member
bwoebi commented Apr 1, 2022

Description

The following code (https://3v4l.org/pvIjH):

<?php

function yieldFromIteratorGeneratorThrows() {
    try {
        yield from new class(new ArrayIterator([1, -2])) extends IteratorIterator {
            public function key() {
                if ($k = parent::key()) {
                    throw new Exception;
                }
                return $k;
            }
        };
    } catch (Exception $e) {
        yield 2;
    }
}

foreach (yieldFromIteratorGeneratorThrows() as $k => $v) {
    var_dump($v);
}

Resulted in this output:

int(1)

But I expected this output instead:

int(1)
int(2)

PHP Version

PHP 7.2 - master

Operating System

No response

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

2 participants
@bwoebi and others