Advertisement
Guest User

Untitled

a guest
Mar 28th, 2017
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. <?php
  2. $input_list = array("Download * book", "Read * book", "book * read", "book * download", "book* pdf");
  3. $rand_key_list = array_rand($input_list, 2);
  4. $input_list[$rand_key_list[0]] = str_replace($input_list[$rand_key_list[0]], "*", "title");
  5. echo $input_list[$rand_key_list[0]] . "\n<br>";
  6. echo $input_list[$rand_key_list[1]] . "\n<br>";
  7. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement