• Categories
    • PHP
    • phpMyAdmin
    • PHPMailer
    • FFMpeg
    • PHPEXcel
    • PHPDoc
    • PHPUnit
    • CakePHP
    • CakePHP 2.0
    • Cake PHP 2.1
    • CakePHP Model
    • Facebook PHP SDK
    • composer-php
    • PHP 7
    • PHP GD
    All Categories
  • About

Show rotation of tweets using current day of month

phparraysdate


PHP Snippet 1:

$tweetLookup = [
    'Four',
    'One',
    'Two',
    'Three',
];
for ($i = 0; $i <= 25; $i++) {
    echo $i . ": " . $tweetLookup[date("d", strtotime( "+$i days")) % 4];
    echo "\n";
}

PHP Snippet 2:

0: One
1: Two
2: Three
3: Four
4: One
5: Two
6: Three
7: Four
8: One
9: Two
10: One
11: Two
12: Three
13: Four
14: One
15: Two
16: Three
17: Four
18: One
19: Two
20: Three
21: Four
22: One
23: Two
24: Three
25: Four

Related Snippets

How to properly start Laravel 8 with Bootstrap & authentication

Do I need to install `fxp/composer-asset-plugin` if I'm not doing front-end development

Trying to iterate over a mongodb cursor twice - failing

how to make my own auto increment in php?

Symfony Mercure "Failed to send an update"

Target Individual Form Instance/Counter Inside A PHP While Loop

I want to use codeigniter foreign character library in my custom PHP project how i can use it?

PHP-Sort array based on another array?

Search for array row with specific column value and return another value from qualifying row

How to prevent phpmailer sending embedded image as an attachment on Gmail?

How to convert time from one timezone to another in PHP

Implode array with array of glue strings

Symfony 4: "Autowire: you should configure its value explicitly."

json_encode turns array into an object

retrieve data from database using session

About Contact Privacy policy Terms and conditions