[PHP] PlayerCount

How would I script this in PHP to get total playercount in my game? I seen it before on websites. And other stats like favorites, like ratio, etc/

1 Like

You would use the Roblox API like in literally any language: https://api.roblox.com/docs?useConsolidatedPage=true

There is a Roblox-PHP wrapper but I don’t believe it let’s you get game information.

With that said, you really shouldn’t use PHP for anything unless you want a bad and insecure application, stuck in 2004 and unsuitable for the modern web.

This category is also meant for Roblox development. Please read the ‘about this category’ before posting.

1 Like

This was related to my roblox development source, rbxTech. but alright. thank you for the feedback

Endpoint for getting the number of people playing:
https://games.roblox.com/docs#!/Games/get_v1_games
Endpoint for getting the number of favorites:
https://games.roblox.com/docs#!/Favorites/get_v1_games_universeId_favorites_count
Endpoint for vote statistics:
https://games.roblox.com/docs#!/Votes/get_v1_games_votes

Doing a bit of searching beforehand goes a long way. The endpoint pages can be a bit hard to find/search through, though, so I understand the confusion.

1 Like