當前位置: 首頁>>代碼示例>>PHP>>正文


PHP Globals::getGameCreditsRequired方法代碼示例

本文整理匯總了PHP中Globals::getGameCreditsRequired方法的典型用法代碼示例。如果您正苦於以下問題:PHP Globals::getGameCreditsRequired方法的具體用法?PHP Globals::getGameCreditsRequired怎麽用?PHP Globals::getGameCreditsRequired使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在Globals的用法示例。


在下文中一共展示了Globals::getGameCreditsRequired方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: create_error

if (empty($race_id) || $race_id == 1) {
    create_error('Please choose a race!');
}
if (!is_numeric($var['game_id'])) {
    create_error('Game ID is not numeric');
}
$gameID = $var['game_id'];
$db->query('SELECT 1 FROM player WHERE game_id = ' . $db->escapeNumber($gameID) . ' AND player_name = ' . $db->escape_string($player_name, true) . ' LIMIT 1');
if ($db->nextRecord() > 0) {
    create_error('The player name already exists.');
}
if (!Globals::isValidGame($gameID)) {
    create_error('Game not found!');
}
// does it cost something to join that game?
$credits = Globals::getGameCreditsRequired($gameID);
if ($credits > 0) {
    if ($account->getTotalSmrCredits() < $credits) {
        create_error('You do not have enough credits to join this game!');
    }
    $account->decreaseTotalSmrCredits($credits);
}
// check if hof entry is there
$db->query('SELECT 1 FROM account_has_stats WHERE account_id = ' . $db->escapeNumber(SmrSession::$account_id) . ' LIMIT 1');
if (!$db->nextRecord()) {
    $db->query('INSERT INTO account_has_stats (account_id, HoF_name) VALUES (' . $db->escapeNumber($account->getAccountID()) . ', ' . $db->escape_string($account->getLogin(), true) . ')');
}
// put him in a sector with a hq
$hq_id = $race_id + 101;
$db->query('SELECT * FROM location JOIN sector USING(game_id, sector_id) ' . 'WHERE game_id = ' . $db->escapeNumber($gameID) . ' AND ' . 'location_type_id = ' . $db->escapeNumber($hq_id));
if ($db->nextRecord()) {
開發者ID:smrealms,項目名稱:smrv2.0,代碼行數:31,代碼來源:game_join_processing.php

示例2: number_format

?>
</td>
					</tr>
					<tr>
						<td align="right">Game Speed</td>
						<td>&nbsp;</td>
						<td align="left"><?php 
echo Globals::getGameSpeed($StatsGameID);
?>
</td>
					</tr>
					<tr>
						<td align="right">Credits Needed</td>
						<td>&nbsp;</td>
						<td align="left"><?php 
echo number_format(Globals::getGameCreditsRequired($StatsGameID));
?>
</td>
					</tr>
					<tr>
						<td align="right">Stats Ignored</td>
						<td>&nbsp;</td>
						<td align="left"><?php 
echo Globals::getGameIgnoreStats($StatsGameID) ? 'Yes' : 'No';
?>
</td>
					</tr>
					<tr>
						<td align="right">Starting Credits</td>
						<td>&nbsp;</td>
						<td align="left"><?php 
開發者ID:smrealms,項目名稱:smrv2.0,代碼行數:31,代碼來源:game_stats.php


注:本文中的Globals::getGameCreditsRequired方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。