fork download
  1. <?php
  2. $ch = curl_init();
  3. curl_setopt($ch, CURLOPT_URL, 'http://c...content-available-to-author-only...s.com/ladders/euw/current/rankedsolo5x5?summoner_name=SnakeDUNE');
  4. curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
  5. $web_page = curl_exec($ch);
  6.  
  7. preg_match("/<td class=\"views-field views-field-rating views-align-center\" >(.+)<\/td>/s", $web_page, $matches);
  8.  
  9. echo trim($matches[1]);
  10.  
  11. ?>
Runtime error #stdin #stdout 0.02s 13112KB
stdin
Standard input is empty
stdout
Fatal error: Call to undefined function curl_init() in /home/4wk7eA/prog.php on line 2