Skip to content

Instantly share code, notes, and snippets.

View saltandvinegarcrisps's full-sized avatar
🤖
NaN

Kieron saltandvinegarcrisps

🤖
NaN
View GitHub Profile
@saltandvinegarcrisps
saltandvinegarcrisps / 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;