fork download
  1. <?php
  2. //The code should look like.
  3.  
  4.  
  5. $contents ='
  6.       var sites = [
  7.  //Texte anime
  8.   {url:" http://c...content-available-to-author-only...o.com/canal/", duration:9},
  9.  //Texte anime
  10.   {url:" http://c...content-available-to-author-only...o.com/canal-2/", duration:9},
  11.   //Intro detallee
  12.  {url:"http://c...content-available-to-author-only...o.com/index-t1.html", duration:35},
  13.  //CTA
  14.  {url:"http://c...content-available-to-author-only...o.com/index-t2.html", duration:35},
  15.      //Football
  16.   {url:"http://c...content-available-to-author-only...o.com/twitter-ligue/", duration:100},  
  17.  //Texte anime
  18.   {url:" http://c...content-available-to-author-only...o.com/canal-2/", duration:9},    
  19.   //TrailersClub.com
  20.   {url:"http://t...content-available-to-author-only...b.com/?lang=fr", duration:480},    
  21.  //Heure
  22.  {url:"http://c...content-available-to-author-only...o.com/heure", duration:8},
  23.  //Meteo
  24.  {url:"http://c...content-available-to-author-only...o.com/meteo", duration:12},
  25.  //Texte anime
  26.   {url:" http://c...content-available-to-author-only...o.com/canal-cine/", duration:9},
  27.  //Cine
  28.  {url:"http://c...content-available-to-author-only...o.com/cine/index-t1.html", duration:150},
  29.   //Texte anime
  30.   {url:" http://c...content-available-to-author-only...o.com/canal-2/", duration:9},
  31.  //Heure
  32.  {url:"http://c...content-available-to-author-only...o.com/heure", duration:8},
  33.  //Meteo
  34.  {url:"http://c...content-available-to-author-only...o.com/meteo", duration:12},
  35.  //Texte anime
  36.   {url:" http://c...content-available-to-author-only...o.com/canal-cine/", duration:9},
  37.    //Cine
  38. ';
  39.  
  40. $reg_exUrl = '/url\s*:\s*"([^"]+)"/';
  41. preg_match_all($reg_exUrl,$contents,$matches);
  42. print_r($matches[1]);
  43. ?>
Success #stdin #stdout 0.02s 13112KB
stdin
Standard input is empty
stdout
Array
(
    [0] =>  http://c...content-available-to-author-only...o.com/canal/
    [1] =>  http://c...content-available-to-author-only...o.com/canal-2/
    [2] => http://c...content-available-to-author-only...o.com/index-t1.html
    [3] => http://c...content-available-to-author-only...o.com/index-t2.html
    [4] => http://c...content-available-to-author-only...o.com/twitter-ligue/
    [5] =>  http://c...content-available-to-author-only...o.com/canal-2/
    [6] => http://t...content-available-to-author-only...b.com/?lang=fr
    [7] => http://c...content-available-to-author-only...o.com/heure
    [8] => http://c...content-available-to-author-only...o.com/meteo
    [9] =>  http://c...content-available-to-author-only...o.com/canal-cine/
    [10] => http://c...content-available-to-author-only...o.com/cine/index-t1.html
    [11] =>  http://c...content-available-to-author-only...o.com/canal-2/
    [12] => http://c...content-available-to-author-only...o.com/heure
    [13] => http://c...content-available-to-author-only...o.com/meteo
    [14] =>  http://c...content-available-to-author-only...o.com/canal-cine/
)