Skip to content

Instantly share code, notes, and snippets.

View jerodev's full-sized avatar
💻
Coding

Jeroen Deviaene jerodev

💻
Coding
View GitHub Profile
<?php
$count = 25000;
$functions = [
'carbon' => function ($i) {
return now()->subDays($i)->format('Y-m-d');
},
'strtotime' => function ($i) {
return date('Y-m-d', strtotime("$i days ago"));
},