ext-php-rs icon indicating copy to clipboard operation
ext-php-rs copied to clipboard

Iterator from Rust

Open khaf opened this issue 1 year ago • 0 comments

Is there an example available to show how to implement an iterator for a Rust object that would work in the PHP side using foreach? Just naively implementing the Iterator interface didn't work, since PHP does not know about it. Any pointers would be appreciated.

Basically, I need this to work for my Rust object:

foreach($records as $key => $rec) {
...
}

khaf avatar Jan 05 '24 11:01 khaf