Kód: Vybrať všetko
<?php
$result=file_get_contents("http://ithf.info/stiga/ithf/ranking/player.aspx?id=260046");
preg_match("/\"rank\".*/", $result, $matches);
preg_match("/(?P<digit>\d+)/", $matches[0], $matchess);
echo $matchess[0];
?>Kód: Vybrať všetko
<?php
$result=file_get_contents("http://ithf.info/stiga/ithf/ranking/player.aspx?id=260046");
preg_match("/\"rank\".*/", $result, $matches);
preg_match("/(?P<digit>\d+)/", $matches[0], $matchess);
echo $matchess[0];
?>