Advertisement
Guest User

Untitled

a guest
Apr 29th, 2020
106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.53 KB | None | 0 0
  1. public function RandomCats($value) {
  2. $N = $value;
  3.  
  4. $f_contents = file("cats.txt");
  5. $line1 = $f_contents[array_rand($f_contents)];
  6. $line2 = $f_contents[array_rand($f_contents)];
  7. $line3 = $f_contents[array_rand($f_contents)];
  8. $Cat1 = $line1;
  9. $Cat2 = $line2;
  10. $Cat3 = $line3;
  11.  
  12. if ($value < 1000000 && $value > 0) {
  13. return view('randomcats', compact('Cat1', 'Cat2', 'Cat3', 'N'));
  14. } else {
  15. return redirect('/');
  16. }
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement