Guest User

Untitled

a guest
Oct 9th, 2017
208
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. <?php
  2.  
  3. $keys = file('keys.txt');
  4. shuffle($keys);
  5.  
  6. $template = file_get_contents('template.txt');
  7.  
  8. foreach ($keys as $key) {
  9. $template = preg_replace("#REPLACEMENT#Uuis", trim($key), $template, 1);
  10. }
  11.  
  12. echo $template;
Advertisement
Add Comment
Please, Sign In to add comment