I have a huge list of urls, and I need them to be in random order...I have text pad, but that only sorts by letter and shit, and I need everything to randomize
is randomize even a word?
is randomize even a word?
<?php
$file = file("urls.txt");
// Strips dupes if you need, comment out if you do not need this
$temp = array_unique($file);
//Shuffles the deck or randomizes :)
shuffle($temp);
//Prints each line
foreach($temp as $value)
{
echo $value;
}
exit;
?><?php
$file = file("urls.txt");
// Strips dupes if you need, comment out if you do not need this
$temp = array_unique($file);
//Shuffles the deck or randomizes :)
shuffle($temp);
//Prints each line
foreach($temp as $value)
{
echo $value;
}
exit;
?><?php
$file = file("urls.txt");
// Strips dupes if you need, comment out if you do not need this
$temp = array_unique($file);
//Shuffles the deck or randomizes :)
shuffle($temp);
//Prints each line
foreach($temp as $value)
{
echo $value;
}
exit;
?>
Comment