Advertisement
Guest User

Untitled

a guest
Aug 17th, 2018
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.19 KB | None | 0 0
  1. require 'simple_html_dom.php';
  2. $html = file_get_html('http://br.crossfire.z8games.com/profile/14047655');
  3. $results = $html->find('.sgw-user-profile');
  4.  
  5. foreach($results as $statusPlayers) {
  6.  
  7. $killPlayer = $statusPlayers->find('#geral div', 0)->attr['data-kills'];
  8. $headShot = $statusPlayers->find('#geral div', 0)->attr['data-headshots'];
  9. $deathPlayer = $statusPlayers->find('#geral div', 0)->attr['data-deaths'];
  10. $totalPartidas = $statusPlayers->find('#geral div', 0)->attr['data-games_played'];
  11. $urlClan = $statusPlayers->find('#user_name_details div[3] div a', 0)->attr['href'];
  12. $weaponPlayer = $statusPlayers->find('#armoury div[3] div[1] div div[2]', 0)->plaintext;
  13. $name = $statusPlayers->find('#user_name_details div[2]', 0)->plaintext;
  14. if(gettype($statusPlayers->find('#user_name_details div[3] div a', 0)) == "NULL") {
  15. echo 'SEM TIME';
  16. }else {
  17. $clantag = $statusPlayers->find('#user_name_details div[3] div a', 0)->plaintext;
  18. }
  19. $status = $statusPlayers->find('#facebooksharebutton', 0)->attr['data-usn'];
  20. $nivelPlayer = $statusPlayers->find('#top_level_user_details div[2] div[1]', 0)->attr['data-rank_title'];
  21.  
  22. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement