fork download
  1. <?php
  2.  
  3. function testProxy($proxyUrl) {
  4. $ch = curl_init();
  5. curl_setopt($ch, CURLOPT_URL, "https://i...content-available-to-author-only...o.io/ip");
  6. curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
  7.  
  8. // Set proxy
  9. curl_setopt($ch, CURLOPT_PROXY, $proxyUrl);
  10.  
  11. // Timeout (optional)
  12. curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 10);
  13. curl_setopt($ch, CURLOPT_TIMEOUT, 15);
  14.  
  15. // For HTTPS URLs
  16. curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
  17.  
  18. $response = curl_exec($ch);
  19.  
  20. if (curl_errno($ch)) {
  21. echo "Error: " . curl_error($ch) . "\n";
  22. } else {
  23. echo "IP returned from proxy: " . trim($response) . "\n";
  24. }
  25.  
  26. curl_close($ch);
  27. }
  28.  
  29. // Example: test one of your proxies
  30. $proxy = "http://wkpaqgad:c5g3ta47fh8m@38.153.152.244:9594"; // replace with actual one from config
  31. testProxy($proxy);
Success #stdin #stdout 0.02s 26076KB
stdin
Standard input is empty
stdout
Error: