fork download
  1. <?php
  2. $ch = curl_init("http://w...content-available-to-author-only...n.net/php.gp?ip=135.148.103.16");
  3. curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
  4. $response = curl_exec($ch);
  5.  
  6. // Try to unserialize first
  7. $data = @unserialize($response);
  8.  
  9. if ($data === false) {
  10. // If unserialization fails, assume it's JSON
  11. $data = json_decode($response, true);
  12. }
  13.  
  14. print_r($data);
  15. ?>
  16.  
Success #stdin #stdout 0.03s 26400KB
stdin
Standard input is empty
stdout
Standard output is empty