PHP code example of steam-market-providers / enums

1. Go to this page and download the library: Download steam-market-providers/enums 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/ */

    

steam-market-providers / enums example snippets


echo \KrepyshSpec\SteamEnums\SteamApp::CSGO->name; // CSGO
echo \KrepyshSpec\SteamEnums\SteamApp::CSGO->value; // 730

$all = \KrepyshSpec\SteamEnums\SteamApp::cases();
var_dump($all);

/**
 array(2) {
   [0]=>
   enum(KrepyshSpec\SteamEnums\SteamApp::CSGO)
   [1]=>
   enum(KrepyshSpec\SteamEnums\SteamApp::Dota2)
 }
 **/

echo SteamApp::Dota2->name // USD
echo SteamApp::Dota2->value; // 570

echo SteamCurrency::USD->name; // USD
echo SteamCurrency::USD->value; // 1

echo SteamLanguage::English->name; // English
echo SteamLanguage::English->value; // english

echo SteamGlobalTag::Survival->name; // Survival
echo SteamGlobalTag::Survival->value; // 1662

echo SteamPlatform::MacOS->name; // MacOS
echo SteamPlatform::MacOS->value; // mac

echo SteamCountry::United_States->name; // United_States
echo SteamCountry::United_States->value; // US