Mno tak sem zase na něco narazil. Je nějaké řešení(funkční na ic.cz), jak zjistit PageRank, JyxoRank nebo Alexa Rank nebo ostatní?
Co by řešitele mohlo zajímat:
1) Na ic.cz je povoleno allow_url_fopen
2) Na ic.cz je zakázána f-ce fsockopen()
3) Na ic.cz nelze používat curl
Co vím? jak udělat s-rank. našel jsem na netu plně funkční kód
function srank($w){
$params = array("0", htmlspecialchars($w), 0);
$request = xmlrpc_encode_request("getRank", $params);
$context = stream_context_create(array('http' => array('method'=>"POST",'header'=>"Content-Type: text/xml",'content'=>$request)));
$file = file_get_contents('http://srank.seznam.cz', false, $context);
$response = xmlrpc_decode($file);
if ($response['status'] == 200) {
return (round($response['rank'] / 2.55,0)).'/100';
}
}