示例#1
0
 /** -----------------------------------------------------------------------
  * Set an API key to use for resolving Custom URLs. If this isn't set
  * custom URL resolution will be done by parsing the profile XML.
  *
  * @param string $key API Key
  * @see http://steamcommunity.com/dev/apikey
  */
 public static function SetSteamAPIKey($key)
 {
     if (empty($key)) {
         self::$steam_api_key = FALSE;
     }
     self::$steam_api_key = $key;
 }