Skip to content

Instantly share code, notes, and snippets.

View kierwils's full-sized avatar
🤖
NaN

Kieron kierwils

🤖
NaN
View GitHub Profile
@kierwils
kierwils / Alternator.php
Last active October 25, 2016 16:16
Alternator Class - useful for alternating colours or other linear recurrencing items
<?php
class Alternator {
// The values that are to be alternated.
private $values = array();
// Count of the array, used to increase performance.
private $count = 0;