PHP code example of truckersmp / steam-api

1. Go to this page and download the library: Download truckersmp/steam-api library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

truckersmp / steam-api example snippets


Steam::convertId($id, $format);

Steam::news()


	$news = Steam::news()->GetNewsForApp($appId, 5, 500)->newsitems;

Steam::player($steamId)

Steam::user($steamId)

	$player = Steam::user($steamId)->ResolveVanityURL('gabelogannewell');

	// One user
	$steamId = 76561197960287930;
	$player = Steam::user($steamId)->GetPlayerSummaries()[0];
	
	// Several users
	$steamIds = [76561197960287930, 76561197968575517]
	$players = Steam::user($steamIds)->GetPlayerSummaries();

Steam::userStats($steamId)

Steam::app()

Steam::package()

Steam::group()


	$news = Steam::group()->GetGroupSummary('Valve');