Advertisement
Guest User

Untitled

a guest
Oct 28th, 2015
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.47 KB | None | 0 0
  1. <?php
  2.  
  3. $m3uData = file_get_contents("http://site.com/list.m3u"); //удаленный m3u
  4. $localData = file_get_contents("local.txt"); //локальный файл
  5.  
  6. $regex = "([A-Z\d\.-]{2,})\.([A-Z]{2,})(:\d{2,4})?/i";
  7.  
  8. $matches = array();
  9. $localMatches =
  10.  
  11. if(preg_match($regex,$m3uData,$matches) && preg_match($regex,$m3uData,$localMatches) ){
  12.   $localData = str_replace($localMatches[0],$matches[0],$localData);
  13.   file_put_contents($localData,"local.txt");
  14. }
  15.  
  16.  
  17. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement