Skip to content

Instantly share code, notes, and snippets.

@devjack
Created September 24, 2014 14:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save devjack/9f863013e617e1c111a1 to your computer and use it in GitHub Desktop.
Save devjack/9f863013e617e1c111a1 to your computer and use it in GitHub Desktop.
<?php
function colours() {
for($i=0x0; $i<0xffffff; $i++) {
yield $i;
}
}
foreach(colours() as $elePHPant) {
echo sprintf("I want a #%06X elePHPant!".PHP_EOL, $elePHPant);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment