Skip to content

Instantly share code, notes, and snippets.

@denisdemaisbr
Created March 24, 2024 03:06
Show Gist options
  • Save denisdemaisbr/c625046c5701618e248698ae2f6b8c74 to your computer and use it in GitHub Desktop.
Save denisdemaisbr/c625046c5701618e248698ae2f6b8c74 to your computer and use it in GitHub Desktop.
generate a array shuffle it then print
<?php
$r = range(1,25);
shuffle($r);
echo implode(" ", $r) . PHP_EOL;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment