<?php
$TargetPlayerPosition = $GLOBALS['DATABASE']->uniquequery("SELECT total_rank FROM ".STATPOINTS." WHERE `id_owner` = '". $this->_fleet['fleet_target_owner'] ."';");
/* conversion to int */
$rank = (int) $TargetPlayerPosition;
/* do the required arithmetic */
/* $rank + 10 will work now */
?>
2条答案
按热度按时间j2cgzkjk1#
不确定查询后如何从resultset检索值。通常,应该从db中的整型字段中获取整型值。如果没有,那么可以用php转换值。
您可以使用如下查询在查询时动态添加数字:
即使字段是字符串类型,也可以执行以下操作:
pokxtpni2#