<?php

function get_values(): Generator
{
    for ($index = 0; $index <= 100; $index++)
    {
        echo 'function => ' . $index . PHP_EOL;
        yield $index;
    }
}

foreach (get_values() as $index)
{
    echo 'foreach => ' . $index . PHP_EOL;
}

Embed on website

To embed this project on your website, copy the following code and paste it into your website's HTML: