Jump to content

návod Sa-mp.com Statistika


Guest CoreBoy

Recommended Posts

Krátky návod jak si dať SAMP.com štatistiku na svoj web :d:)

 

 

Funkcie:

function cut_str($str, $left, $right){
$str = substr(stristr($str, $left), strlen($left));
$leftLen = strlen(stristr($str, $right));
$leftLen = $leftLen ? -($leftLen) : strlen($str);
$str = substr($str, 0, $leftLen);
return $str;
}
function GetOnlinePlayers()
{
$web = file_get_contents('http://sa-mp.com/index.php');
$datastring = explode("\n", $web); 
$players1 = $datastring[19];
$string = cut_str($players1, "Players Online: ", "");
return $string;
}
function GetOnlineServers()
{
$web = file_get_contents('http://sa-mp.com/index.php');
$datastring = explode("\n", $web); 
$servers1 = $datastring[20];
$string = cut_str($servers1, "Servers Online: ", "");
return $string;
}

Použitie:

echo "Prave hra SA:MP " . GetOnlinePlayers() . " hracov !
";
echo "Prave je online " . GetOnlineServers() . " serverov !
";

Link to comment
Share on other sites

3/10

 

Nic není popsané!!

Su tu taký ktorý vôbec nevedia kam to majú dať :d

 

Treba jako ty ze? :d

 

Ja viem Php ;)

 

Hovorím o takých ako si ty :d

Mne sa zdá toto zbytočné :d

Link to comment
Share on other sites

3/10

 

Nic není popsané!!

Su tu taký ktorý vôbec nevedia kam to majú dať :d

 

Treba jako ty ze? :d

 

Ja viem Php ;)

 

Hovorím o takých ako si ty :d

Mne sa zdá toto zbytočné :d

Pokiaľ by som ti dal kontrolné otázky tak by som z tvojých odpovedi zhorel.

 

Pokiaľ by neišla strána SA-MP.com tak by vam to neišlo takže to je dosť na nič

Link to comment
Share on other sites

  • 1 month later...

Pokiaľ by som ti dal kontrolné otázky tak by som z tvojých odpovedi zhorel.

 

Pokiaľ by neišla strána SA-MP.com tak by vam to neišlo takže to je dosť na nič

 

A ako by si to ty spravil, aby si sa vyhol ťahania údajov z sa-mp.com ? Mňa nenapadá momentálne iné riešenie, ak vôbec existuje.

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...