fork download
  1. <?php
  2.  
  3. $texto = '"play_url":"http:/video.server.com/","';
  4. preg_match_all('/"play_url":"(.*)","/i', $texto, $link);
  5. echo $link[1][0];
Success #stdin #stdout 0s 82624KB
stdin
Standard input is empty
stdout
http:/video.server.com/