Check if a proxy is working, its type (transparent, anonymous, elite) and other info (time, http code, redirect count, speed etc.)
{ip}:{port},{password},{type}
type - http, socks4, socks5
password and type if not required
Some examples:
123:456:789:8080
123:456:789:8080,user:pass
123:456:789:8080,user:pass,socks5
$pingUrl = 'http://yourdomain.com/ProxyChecker/ping.php';
$proxy = 'xxx:xxx:xxx:xx';
$proxyChecker = new ProxyChecker($pingUrl);
$results = $proxyChecker->checkProxy($proxy);
$pingUrl = 'http://yourdomain.com/ProxyChecker/ping.php';
$proxies = array('xxx.xxx.xxx.xxx:xx', 'xxx.xxx.xxx.xxx:xx');
$proxyChecker = new ProxyChecker($pingUrl);
$results = $proxyChecker->checkProxies($proxies);
Array allowed/disallowed operations of proxy (get, post, referer, cookie, user_agent), for example:
'allowed' => array (
0 => 'get',
1 => 'post',
2 => 'referer',
3 => 'user_agent'
)
'disallowed' => array (
0 => 'cookie'
)
elite - connection looks like a regular client
anonymous - no ip is forworded but target site could still tell it's a proxy
transparent - ip is forworded and target site would be able to tell it's a proxy
'proxy_level' => 'elite',
Other proxy info - time, http code, redirect count, speed etc:
'info' => array (
'content_type' => 'text/html',
'http_code' => 200,
'header_size' => 237,
'request_size' => 351,
'ssl_verify_result' => 0,
'redirect_count' => 0,
'total_time' => 1.212548,
'connect_time' => 0.058647,
'size_upload' => 143,
'size_download' => 485,
'speed_download' => 399,
'speed_upload' => 117,
'download_content_length' => 485,
'upload_content_length' => 143,
'starttransfer_time' => 1.059746,
'redirect_time' => 0,
'certinfo' => array (),
),