Skip to content

Instantly share code, notes, and snippets.

@yozzi
Created June 29, 2016 18:20
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 yozzi/be4c7e930d1242cc0272010fb9e3ba27 to your computer and use it in GitHub Desktop.
Save yozzi/be4c7e930d1242cc0272010fb9e3ba27 to your computer and use it in GitHub Desktop.
Rotate an image every 3 days
<?php
date_default_timezone_set('America/New_York');
$dayOfTheYear = date('z');
$iterationCount = ceil($dayOfTheYear / 3);
$numberForIteration = $iterationCount % 8;
echo '<img alt="" src="'.$numberForIteration.'.jpg" />';
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment