Guest User

Untitled

a guest
May 20th, 2018
114
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. $file = file_get_contents("1.txt");
  2. $file2 = file_get_contents("2.txt");
  3. $pieces = explode("\n", $file);
  4. $pieces2 = explode("\n", $file2);
  5.  
  6. foreach($pieces as $piece)
  7. {
  8. foreach($pieces2 as $piece2)
  9. {
  10. if(strcmp(trim($piece), trim($piece2)) == 0)
  11. echo 'yes';
  12. }
  13. }
Add Comment
Please, Sign In to add comment